/* src/css/pages/login.css */
.login-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  background: #f8f9fa !important;
}

/* Background glowing effects */
.glow-1,
.glow-2 {
  display: none !important;
}

.login-card {
  width: 100%;
  max-width: 420px;
  text-align: center;
  z-index: 10;
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  color: #111827 !important;
  padding: 2.5rem 2rem;
  border-radius: 20px;
}

.login-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #111827 !important;
}

.login-brand {
  font-size: 2.5rem;
  font-weight: 900;
  color: #E4002B !important;
  -webkit-text-fill-color: #E4002B !important;
  background: none !important;
  margin-bottom: 1.5rem;
}

.login-desc {
  color: #4b5563 !important;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  background: #ffffff !important;
  border: 1px solid #d1d5db !important;
  color: #374151 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05) !important;
  padding: 1rem;
  border-radius: 0.75rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.btn-google:hover {
  background-color: #f9fafb !important;
  border-color: #9ca3af !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.btn-google svg {
  width: 24px;
  height: 24px;
}

/* Logo de la marca en la tarjeta de login */
.login-brand-logo {
  height: 80px;
  width: auto;
  margin: 0 auto 1.5rem auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Contenedor del botón Volver */
.login-back-btn-container {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 20;
}

/* Botón Volver */
.login-back-btn {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #111827;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.login-back-btn:hover {
  background: #f3f4f6;
  color: #E4002B;
}


