/* ====== Estructura general ====== */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Arial', sans-serif;
  background-color: #f8f9fa;
}




.login-container {
  display: flex;
  height: 100vh;
  width: 100%;
}

/* ====== Columna izquierda (formulario) ====== */
.login-form {
  flex: 1; /* ocupa espacio flexible en escritorio */
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  max-width: 520px; /* límite en escritorio */
  margin: auto;
}


.logo img {
  width: 250px;
  margin-bottom: 20px;
}

.login-form h2 {
  color: #003366; /* Azul Rembia */
  margin-bottom: 10px;
}

.subtext {
  color: #666;
  font-size: 14px;
  margin-bottom: 30px;
  text-align: center;
}

/* Formulario interno: más ancho por defecto */
.login-form form {
  width: 100%;
  max-width: 400px;  /* más grande que 320px */
  margin: auto;
}

.login-form input {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

.login-form button {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  border: none;
  border-radius: 8px;
  background-color: #2c5df1;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.06s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 14px rgba(0, 102, 204, 0.18);
}
.login-form button:hover {
  background-color: #004999;
  transform: translateY(-1px);
}


/* ====== Links ====== */
.extra-links {
  margin-top: 20px;
  text-align: center;
}

.extra-links a {
  display: block;
  margin: 5px 0;
  font-size: 14px;
  color: #2c5df1;
  text-decoration: none;
}

.extra-links a:hover {
  text-decoration: underline;
}

/* ====== Separador (o) ====== */
.divider {
  width: 100%;
  max-width: 320px;
  text-align: center;
  margin: 20px 0;
  border-bottom: 1px solid #ddd;
  line-height: 0.1em;
}

.divider span {
  background: #fff;
  padding: 0 10px;
  color: #777;
  font-size: 14px;
}

/* ====== Botones sociales ====== */
.social-login {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-login button {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s ease;
}

.social-login button:hover {
  background: #f2f2f2;
}

.social-login .google {
  color: #db4437;
  font-weight: bold;
}

.social-login .facebook {
  color: #2c5df1;
  font-weight: bold;
}

/* ====== Columna derecha (imagen) ====== */

.login-image {
  width: 60%;
  position: relative;
  display: flex;             /* centra la imagen si quieres */
  justify-content: center;
  align-items: center;
  overflow: hidden;          /* evita que se deforme o sobresalga */
}

.login-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* recorta sin deformar */
  display: block;
}

/* Gradiente encima de la imagen */
.login-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.05)
  );
  z-index: 1; /* encima de la imagen */
}



.login-form input:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.12);
}

.legal {
  margin-top: 18px;
  font-size: 12px;
  color: #888;
}
.legal a {
  color: #2c5df1;
  text-decoration: none;
}
.legal a:hover {
  text-decoration: underline;
}


.social-login {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.social-login button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid #ddd;
  border-radius: 999px;   /* 🔥 Píldora */
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  background: #fff;
  transition: background 0.2s ease;
}

.social-login button svg {
  width: 20px;
  height: 20px;
}

.social-login button:hover {
  background: #f9f9f9;
}

/* Colores por marca */
.google {
  color: #db4437;
  border: 1px solid #db4437;
}

.social-login button.apple {
  background: #000 !important;
  color: #fff !important;
  border: 1px solid #000 !important;
  font-weight: bold;
}


.social-login button.apple svg {
  fill: #fff;
}





.facebook {
  color: #1877f2;
  border: 1px solid #1877f2;
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: transparent;
  }

  .login-container {
    display: flex;
    justify-content: center;   /* centro horizontal */
    align-items: center;       /* centro vertical */
    min-height: 100vh;
    flex-direction: column;
    position: relative;
    padding: 12px;             /* 🔹 menos padding externo */
    box-sizing: border-box;
    background: transparent;
  }

  /* Fondo oscuro */
  .login-container::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 0;
  }

  /* Recuadro blanco compacto */
  .login-form {
    position: relative;
    z-index: 1;
    background: #fff;
    width: 100%;
    max-width: 340px;          /* 🔹 un poco más angosto */
    margin: 0 auto;
    border-radius: 12px;
    padding: 14px 12px;        /* 🔹 menos espacio interno */
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    max-height: 70vh;          /* 🔹 no tan alto */
    overflow-y: auto;
  }

  .login-image {
    display: block;
    position: fixed;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: -1;
  }

  .login-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Compactar textos */
  .login-form .logo img {
    width: 210px;              /* 🔹 más pequeño */
    margin-bottom: 5px;       /* 🔹 menos espacio */
  }

  .subtext {
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.3;
    text-align: center;
  }

  /* Inputs */
  .login-form input {
    width: 100%;
    margin: 4px 0;            /* 🔹 menos separación */
    padding: 8px 9px;
    font-size: 13px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
  }

  /* Botón */
  .login-form button {
    margin-top: 15px;
    padding: 9px;
    font-size: 14px;
    border-radius: 6px;
  }

  /* Links */
  .extra-links {
    margin-top: 6px;
    text-align: center;
  }

  .divider {
    margin: 10px 0;           /* 🔹 menos espacio */
    text-align: center;
  }

  /* Botones sociales */
  .social-login {
    display: flex;
    flex-direction: column;
    gap: 6px;                 /* 🔹 más juntos */
    align-items: center;
  }

  .social-login button {
    width: 85%;
    max-width: 240px;
    padding: 7px 12px;
    font-size: 12.5px !important;
    border-radius: 999px;
  }

  .social-login button svg {
    width: 16px;
    height: 16px;
  }
}

/* --- Fix: iconos SVG cortados en los botones sociales --- */
.social-login button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1;          /* evita que el baseline corte el SVG */
  box-sizing: border-box;  /* por si acaso */
}

.social-login button svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;          /* tamaño fijo, no se deforma */
  display: block;          /* saca el SVG del baseline */
  vertical-align: middle;  /* por si no aplicara display:block en algún navegador */
  overflow: visible;       /* evita recortes de trazos/píxeles externos */
}

/* Apple en blanco sobre fondo negro */
.social-login button.apple svg { fill: #fff; }

/* En móvil, mantenlos un poquito más chicos si quieres */
@media (max-width: 768px) {
  .social-login button svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
  }
}




