/* signup.css */

/* Contenedor principal */
.form-container {
  max-width: 400px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #ffffff;
  border: 2px solid #00ff3c;       /* borde verde neón */
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0, 255, 60, 0.3);
  font-family: Arial, sans-serif;  /* fuente simple y limpia */
}

/* Título */
.form-container h2 {
  font-family: 'Wedgie Regular', cursive;
  font-size: 2.25rem;
  color: #00ff3c;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Cada grupo de campo */
.form-group {
  margin-bottom: 1rem;
}

/* Etiquetas */
.form-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: bold;
  color: #333333;
}

/* Campos de formulario */
.form-group input,
.form-group select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #cccccc;
  border-radius: 0.25rem;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* Placeholder y texto de ayuda */
.help-text {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: #666666;
}

/* Errores de validación */
.form-group .errorlist {
  margin-top: 0.25rem;
  color: #cc0000;
  font-size: 0.85rem;
}

/* Focus en campos */
.form-group input:focus,
.form-group select:focus {
  border-color: #00ff3c;
  box-shadow: 0 0 5px rgba(0, 255, 60, 0.5);
  outline: none;
}

/* Área de acciones (botón y enlace) */
.form-actions {
  text-align: center;
  margin-top: 1.5rem;
}

/* Botón de envío */
.form-actions .btn {
  background-color: #000000;
  color: #00ff3c;
  border: 2px solid #00ff3c;
  border-radius: 0.25rem;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

/* Hover del botón */
.form-actions .btn:hover {
  background-color: #00ff3c;
  color: #000000;
}

/* Enlace secundario */
.form-actions .small {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #666666;
}

.form-actions .small a {
  color: #00ff3c;
  text-decoration: none;
}

.form-actions .small a:hover {
  text-decoration: underline;
}
