*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #1a1d23;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container {
  width: 100%;
  max-width: 420px;
  padding: 20px;
}

.login-card {
  background: #fff;
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}

.login-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.login-logo {
  height: 44px;
  width: auto;
}

.login-subtitle {
  color: #5f6368;
  font-size: 14px;
  margin-bottom: 32px;
}

.login-error {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  background: rgba(234,67,53,.08);
  color: #ea4335;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 20px;
}

.login-error .material-icons-outlined {
  font-size: 18px;
}

.google-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 32px;
  background: #fff;
  border: 1px solid #e0e3e8;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #1a1d23;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  transition: .2s ease;
  margin-bottom: 24px;
}

.google-btn:hover {
  background: #f8f9fa;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  border-color: #d0d3d8;
}

.google-logo {
  flex-shrink: 0;
}

.login-footer {
  font-size: 12px;
  color: #9aa0a6;
}

.login-footer strong {
  color: #5f6368;
}
