:root {
  --primary-blue: #002347;
  --secondary-blue: #003366;
  --gold-accent: #D4AF37;
  --gold-hover: #b8962e;
  --bg-light: #f4f7f6;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-light);
  height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container {
  width: 100%;
  max-width: 1000px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  min-height: 600px;
}

/* Lado Izquierdo: Formulario */
.login-form-side {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Lado Derecho: Imagen/Branding */
.login-info-side {
  flex: 1;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  position: relative;
  text-align: center;
}

/* Decoración de círculos dorados sutiles */
.login-info-side::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border: 40px solid rgba(212, 175, 55, 0.05);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.brand-logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 40px;
  text-decoration: none;
}

.brand-logo span {
  color: var(--gold-accent);
}

.form-label {
  font-weight: 600;
  color: #555;
  font-size: 0.85rem;
}

.form-control {
  border-radius: 10px;
  padding: 12px 15px;
  border: 1px solid #e1e1e1;
  background-color: #f9f9f9;
}

.form-control:focus {
  background-color: #fff;
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.1);
}

.btn-login {
  background-color: var(--primary-blue);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
  width: 100%;
  margin-top: 20px;
  transition: all 0.3s;
}

.btn-login:hover {
  background-color: var(--secondary-blue);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 35, 71, 0.2);
  color: #fff;
}

.divider {
  height: 1px;
  background: #eee;
  margin: 30px 0;
  position: relative;
}

.divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 0 15px;
  color: #aaa;
  font-size: 0.8rem;
}

.btn-google {
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 10px;
  width: 100%;
  font-weight: 500;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s;
}

.btn-google:hover {
  background: #f8f9fa;
}

.forgot-pass {
  color: var(--gold-accent);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}

.forgot-pass:hover {
  color: var(--gold-hover);
}

/* Responsive */
@media (max-width: 768px) {
  .login-container {
      flex-direction: column;
      margin: 20px;
      min-height: auto;
  }
  .login-info-side {
      display: none; /* Ocultamos el lado azul en móviles para ahorrar espacio */
  }
  .login-form-side {
      padding: 40px 30px;
  }
}