/* Auth Page Styles matching lakeaiqa design */
.auth-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #243b53 0%, #1a2d3f 100%);
  padding: 20px;
}

.auth-container {
  width: 100%;
  max-width: 440px;
}

.auth-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.auth-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.brand-link {
  text-decoration: none;
}

.brand-link:hover {
  opacity: 0.8;
}

.auth-subtitle {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 1rem;
}

.btn-google {
  background-color: white;
  border: 1px solid #dadce0;
  color: #3c4043;
  font-weight: 600;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 8px;
  transition: all 0.3s;
}

.btn-google:hover {
  background-color: #f8f9fa;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.divider {
  position: relative;
  text-align: center;
  margin: 24px 0;
}

.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--border-color);
}

.divider span {
  position: relative;
  background-color: white;
  padding: 0 16px;
  color: var(--text-light);
  font-size: 0.875rem;
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-control {
  border-radius: 8px;
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.auth-card .btn-primary {
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
}

.auth-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.auth-card a:hover {
  text-decoration: underline;
}

.text-muted {
  color: var(--text-light) !important;
  font-size: 0.875rem;
}

.powered-by {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--text-light);
  font-size: 0.875rem;
}

.powered-by a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.powered-by a:hover {
  text-decoration: underline;
}

/* Login Error Message */
#login-error {
  border-left: 4px solid #dc3545;
  background-color: #f8d7da;
  color: #842029;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  animation: slideDown 0.3s ease;
}

#login-error i {
  font-size: 1.2rem;
  vertical-align: middle;
  color: #842029;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Back Button */
.back-btn {
  border-color: #dee2e6;
  color: #495057;
  background-color: white;
}

.back-btn:hover {
  background-color: #f8f9fa;
  border-color: #adb5bd;
  color: #212529;
}

/* Brand Link */
.brand-link {
  display: inline-block;
  text-decoration: none;
}

.brand-link:hover {
  opacity: 0.8;
}

@media (max-width: 576px) {
  .auth-card {
    padding: 30px 24px;
  }

  .auth-brand {
    font-size: 1.5rem;
  }
}
