/* Contenedor del switch */
.auth-switch {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
}

/* Botones del switch */
.switch-button {
  flex: 1;
  padding: 12px;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
  background: #f9f9f9;
  transition: all 0.3s ease-in-out;
}

/* Estilos cuando está activo */
.switch-button.active {
  background: var(--button-bg);
  color: #fff;
}

/* Ocultar el formulario de registro inicialmente */
.hidden {
  display: none;
}

.container-login {
  max-width: 700px;
  margin: auto;

  padding: var(--spacing-lg) 0;
}
