/* File: general-tools-api/app/static/css/auth/login.css */
/* Purpose: Styles for Google-only login page (no inline CSS in templates) */

.login-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 420px;
  width: 100%;
}

.login-header {
  text-align: center;
  padding: 30px 30px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.login-header h1 {
  color: #333;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.login-header p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

.login-body {
  padding: 30px;
}

.login-hint {
  font-size: 0.9rem;
  color: #666;
  margin: 0 0 16px;
  text-align: center;
}

.btn-google {
  background: white;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  width: 100%;
  margin: 10px 0 14px;
  transition: all 0.2s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-google:hover {
  border-color: #4285f4;
  background: #f8f9fa;
  color: #333;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.login-footer {
  text-align: center;
  padding: 20px 30px 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.login-footer a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
}

.login-footer a:hover {
  text-decoration: underline;
}

.alert {
  border-radius: 10px;
  border: none;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .login-container {
    padding: 10px;
  }

  .login-header {
    padding: 20px 20px 15px;
  }

  .login-header h1 {
    font-size: 1.5rem;
  }

  .login-body {
    padding: 20px;
  }
}


