/* RequestWala Login Styles */

@import 'common.css';

/* ============================================================================
   PAGE LAYOUT
   ============================================================================ */

body {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.login-container {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  max-width: 450px;
  width: 90%;
  animation: fadeIn 0.5s ease-out;
}

/* ============================================================================
   LOGO & HEADING
   ============================================================================ */

.logo {
  font-size: 48px;
  margin-bottom: 1rem;
  animation: scaleIn 0.5s ease-out;
}

h1 {
  font-size: 32px;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  animation: fadeIn 0.5s ease-out 0.2s both;
}

.subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  animation: fadeIn 0.5s ease-out 0.3s both;
}

/* ============================================================================
   GOOGLE BUTTON
   ============================================================================ */

.google-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-slow);
  box-shadow: 0 4px 16px rgba(247, 147, 30, 0.3);
  animation: fadeIn 0.5s ease-out 0.4s both;
}

.google-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 147, 30, 0.4);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.google-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(247, 147, 30, 0.3);
}

.google-icon {
  width: 20px;
  height: 20px;
}

/* ============================================================================
   FEATURES SECTION
   ============================================================================ */

.features {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  animation: fadeIn 0.5s ease-out 0.6s both;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.features h3 {
  font-size: 16px;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  transition: var(--transition);
}

.feature-item:hover {
  background: rgba(247, 147, 30, 0.1);
  border-color: var(--primary-color);
}

.feature-icon {
  font-size: 18px;
}

/* ============================================================================
   THEME TOGGLE
   ============================================================================ */

.theme-toggle-container {
  position: absolute;
  top: 20px;
  right: 20px;
}

.btn-theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.btn-theme-toggle:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

@media (max-width: 480px) {
  .login-container {
    padding: 2rem 1.5rem;
  }

  h1 {
    font-size: 28px;
  }

  .subtitle {
    font-size: 14px;
  }

  .google-btn {
    padding: 12px 24px;
    font-size: 15px;
    width: 100%;
  }

  .theme-toggle-container {
    top: 15px;
    right: 15px;
  }

  .btn-theme-toggle {
    width: 40px;
    height: 40px;
  }
}
