/* Styles for the login page */
/* Login page specific styles */
.login-page {
  min-height: 100vh;
  background: linear-gradient(
    to bottom,
    #ff6b35 0%,
    #ff8c42 25%,
    #ffa726 40%,
    #77bcb4 60%,
    #24bba9 75%,
    /* #7f86b7 90%, */
    /* #47beb1 80% */
    #7f86b7 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
}

.login-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(66, 165, 245, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 40% 80%, rgba(255, 171, 38, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.login-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  padding: 20px;
}

.page-logo {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 0 auto 30px auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
  position: relative;
  z-index: 2;
}

.login-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 48px 32px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 8px 16px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-content h1 {
  margin: 0 0 8px 0;
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35, #24bba9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.subtitle {
  color: #6b7280;
  font-size: 16px;
  margin: 0 0 32px 0;
  font-weight: 400;
}

.google-signin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  background: white;
  color: #3c4043;
  text-decoration: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid #e8eaed;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 240px;
}

.google-signin-btn:hover {
  background: #f8f9fa;
  border-color: #dadce0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.google-signin-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.google-icon {
  flex-shrink: 0;
}
