/* Layout */
.signin-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, #f8fafc, #ffffff);
  font-family:
    system-ui,
    -apple-system,
    'Segoe UI',
    Roboto,
    sans-serif;
  height: 100%;
}

/* Card */
.signin-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 360px;
  text-align: center;
}

/* Logo */
.signin-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.signin-logo-icon {
  width: 4rem;
  height: 4rem;
}

/* Logo theme colors for signin */
.signin-logo-icon .logo-bg {
  fill: var(--color-primary);
  transition: fill 0.2s ease;
}

.signin-logo-icon .logo-bird {
  fill: #ffffff;
}

.signin-logo-icon .logo-eye {
  fill: var(--color-primary);
  transition: fill 0.2s ease;
}

/* Text */
.signin-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.signin-subtitle {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.signin-footer {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 1.5rem;
}

.signin-footer a {
  color: #6b7280;
  text-decoration: underline;
}

.signin-footer a:hover {
  color: #374151;
}

/* Google button */
.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 500;
  color: #374151;
  transition:
    box-shadow 0.2s,
    transform 0.1s,
    background 0.2s;
}

.google-btn:hover {
  background: #f9fafb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.google-btn:active {
  transform: scale(0.98);
}

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