html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: fit-content;
  background: linear-gradient(
    180deg,
    rgb(233, 149, 73) 0%,
    rgb(244, 91, 83) 100%
  );
}

/* Contenedor principal */
.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 20px 0;
}

/* Tarjeta de login/register */
.auth-card {
  background-color: #121212;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Imagen lateral */
.login-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contenido del formulario */
.auth-content {
  padding: 3rem;
  color: white;
}

/* Inputs */
.regular-input-double {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 2px solid #ffffff;
  border-radius: 4px;
  background-color: transparent;
  color: white;
}

.regular-input-double:focus {
  outline: none;
  border-color: #f45b53;
  box-shadow: 0 0 0 0.25rem rgba(244, 91, 83, 0.25);
}

.small-input-register {
  width: 100%;
}

/* Botón primario */
.primary-button {
  background: linear-gradient(
      0deg,
      rgb(244, 91, 83) 0%,
      rgb(233, 149, 73) 100%
  );
  color: black;
  font-weight: 900;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 20px;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Textos con gradiente */
.gradient-text {
  background: linear-gradient(
      90deg,
      rgb(244, 91, 83) 0%,
      rgb(233, 149, 73) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Estilos del switcher (recuérdame) */
.switcher {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.switcher input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Mensajes de error */
.error-message {
  color: #f45b53;
  font-size: 12px;
  margin-top: 5px;
}

.error-input {
  border-color: #f45b53 !important;
}

/* Responsive */
@media (max-width: 992px) {
  .login-image-col {
      display: none;
  }
  
  .auth-content {
      padding: 2rem;
  }
}

@media (max-width: 576px) {
  .auth-content {
      padding: 1.5rem;
  }
  
  .flex-container {
      flex-direction: column;
  }
  
  .small-input-register {
      width: 100%;
  }
}