/* Estilos para la página de Registro */

/* Hero Section */
.registro-hero {
  background: linear-gradient(135deg, #6B73FF 0%, #6BC6FF 100%);
  color: white;
  text-align: center;
  padding: 120px 20px 80px;
  margin-bottom: 60px;
}

.registro-hero .hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.registro-hero .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.registro-hero .hero-content p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.6;
}

.logo-font {
  font-family: 'Bagel Fat One', cursive;
  color: #FFE066;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Contenedor Principal */
.registro-section {
  padding: 0 20px 60px;
}

.registro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}

/* Formulario */
.registro-form-container {
  background: white;
}

.form-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 40px;
  border: 1px solid #f0f0f0;
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 700;
}

.form-header h2 i {
  color: #6B73FF;
  margin-right: 10px;
}

.form-header p {
  color: #666;
  font-size: 1.1rem;
}

/* Formulario */
.registro-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input {
  padding: 12px 16px;
  border: 2px solid #e1e1e1;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-group input:focus {
  outline: none;
  border-color: #6B73FF;
  background: white;
  box-shadow: 0 0 0 3px rgba(107, 115, 255, 0.1);
}

.form-group select {
  padding: 12px 16px;
  border: 2px solid #e1e1e1;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafafa;
  width: 100%;
  cursor: pointer;
}

.form-group select:focus {
  outline: none;
  border-color: #6B73FF;
  background: white;
  box-shadow: 0 0 0 3px rgba(107, 115, 255, 0.1);
}

.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e1e1e1;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafafa;
  width: 100%;
  resize: vertical;
  min-height: 80px;
  font-family: 'Poppins', sans-serif;
}

.form-group textarea:focus {
  outline: none;
  border-color: #6B73FF;
  background: white;
  box-shadow: 0 0 0 3px rgba(107, 115, 255, 0.1);
}

/* Checkbox Groups */
.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #6B73FF;
}

.terms-link {
  color: #6B73FF;
  text-decoration: underline;
  font-weight: 500;
}

.terms-link:hover {
  color: #5A63E5;
}

/* Botones */
.form-actions {
  text-align: center;
  margin-top: 20px;
}

.btn {
  padding: 14px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, #6B73FF 0%, #6BC6FF 100%);
  color: white;
  min-width: 200px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #5A63E5 0%, #5AB5E5 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107, 115, 255, 0.3);
}

.login-link {
  margin-top: 20px;
  color: #666;
  font-size: 0.95rem;
}

.login-link a {
  color: #6B73FF;
  text-decoration: none;
  font-weight: 500;
}

.login-link a:hover {
  text-decoration: underline;
}

/* Información Lateral */
.registro-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.info-card h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
}

.info-card h3 i {
  color: #6B73FF;
  margin-right: 10px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  padding: 8px 0;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefits-list li i {
  color: #28a745;
  font-size: 0.9rem;
}

.info-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .registro-hero {
    padding: 100px 20px 60px;
  }
  
  .registro-hero .hero-content {
    text-align: center;
    max-width: 100%;
    padding: 0 15px;
  }
  
  .registro-hero .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .registro-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-card {
    padding: 30px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .registro-hero .hero-content {
    text-align: center;
    padding: 0 10px;
  }
  
  .registro-hero .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .registro-hero .hero-content p {
    font-size: 1.1rem;
  }
  
  .form-header h2 {
    font-size: 1.6rem;
  }
  
  .info-card {
    padding: 20px;
  }
}