/* ————— WRAPPER ————— */
.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: var(--muted); /* very‑light grey‑blue */
  padding: 32px;
}

/* ————— CARD ————— */
.login-card {
  background: var(--card); /* white */
  width: 100%;
  max-width: 980px; /* similar to Google’s 920 px */
  display: flex;
  border-radius: 24px; /* generous curve */
  box-shadow: var(--shadow-lg);
  overflow: hidden; /* clip radius for flex children */
}

/* Left column (branding) */
.login-side {
  flex: 0 0 320px;
  padding: 72px 56px;
  border-right: 1px solid var(--border);
}

.login-logo {
  width: 48px;
  margin-bottom: 48px;
}
.login-title {
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 12px;
}
.login-subtitle {
  font-size: 16px;
  color: var(--muted-foreground);
}

/* Right column (form) */
.login-content {
  flex: 1;
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Forms */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Crispy fields → make inputs look like Google’s outline style */
.login-form input[type],
.login-form input {
  width: 100%;
  padding: 14px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 16px;
  transition: border 0.15s;
}
.login-form input:focus {
  outline: none;
  border: 2px solid var(--primary); /* blue outline */
}

/* Small links (“Forgot email?”, “Create account”) */
.link-small {
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
}
.link-small:hover {
  text-decoration: underline;
}

.login-links {
  text-align: left;
  margin-top: -8px;
} /* pulls link closer to field */
.login-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

/* Primary CTA */
.btn-login {
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 24px;
  padding: 10px 32px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-login:hover {
  background: oklch(from var(--primary) calc(l * 1.1) c h);
}

/* ————— RESPONSIVE ————— */
@media (max-width: 768px) {
  .login-card {
    flex-direction: column;
    max-width: 480px;
  }
  .login-side,
  .login-content {
    padding: 48px 32px;
    border-right: none;
  }
  .login-actions {
    flex-direction: column-reverse;
    gap: 24px;
  }
}

@media (min-width: 768px) {
  .main-content {
    margin-left: 0;
  }
}

.gsi-material-button {
  display: inline-flex;
  align-items: center;
  border: none;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1),
              0px 1px 3px rgba(0, 0, 0, 0.1);
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.2s ease-in-out;
  width: 260px;
  height: 40px;
}

.gsi-material-button:hover {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
}

.gsi-material-button-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.gsi-material-button-icon {
  padding-left: 12px;
  padding-right: 8px;
}

.gsi-material-button-icon svg {
  width: 18px;
  height: 18px;
}

.gsi-material-button-contents {
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #3c4043;
  white-space: nowrap;
  flex-grow: 1;
  text-align: center;
  padding-right: 12px;
}

.social-login-container {
  margin-top: 2rem;
  text-align: center;
}

.social-login-label {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.75rem;
}

.social-login-buttons {
  display: flex;
  justify-content: center;
}


