/* --- Google sign-in button --- */
.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;

  background: #ffffff;           /* Google button is white */
  color: #1f1f1f !important;
  border: 1px solid #e6e6e6;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);

  font-weight: 600;
  letter-spacing: .2px;
  text-transform: none;

  transition: transform .04s ease, box-shadow .18s ease, border-color .18s ease;
}

.btn-google:hover {
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  border-color: #dcdcdc;
}

.btn-google:active {
  transform: translateY(1px);
}

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

/* --- nicer "OR" divider that matches your glass card --- */
.or-divider {
  margin: 1.5rem 0 1rem;
  position: relative;
  text-align: center;
}

.or-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.75rem;
  right: 0.75rem;
  height: 1px;
  background: rgba(0,0,0,0.10);
  transform: translateY(-50%);
}

.or-divider > span {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 0.75rem;
  background: rgba(255,255,255,0.92); /* same vibe as your glass card */
  color: #6b7280;                      /* subtle gray */
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- tweak: card on mobile slightly wider padding --- */
@media (max-width: 420px) {
  .login-card { padding: 2rem 1.25rem; }
}

/* ---- Layout: center & constrain card ---- */
.login-wrapper{
  min-height: calc(100vh - 80px); /* leaves room for your navbar */
  display:flex; align-items:center; justify-content:center;
  padding: 24px;
}
.login-card{
  width:100%;
  max-width: 460px;        /* <- main fix: keeps the card narrow */
  background: #ffffff;     /* or rgba(255,255,255,.92) for glass */
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 16px 36px rgba(0,0,0,.12);
}
.center-title{
  margin: 6px 0 18px;
  font-weight: 600;
  letter-spacing: .2px;
}

/* Input polish */
.input-field input{ padding: .9rem 0 .6rem; }
.input-field .material-icons{ color:#9e9e9e; }

/* Primary action */
.btn-login{
  border-radius: 10px;
  text-transform:none;
  font-weight:600;
}

/* Google button already present — tighten a bit */
.btn-google{ border-radius: 10px; padding: 12px 14px; }
.google-icon{ width: 18px; height: 18px; }

/* Divider spacing on narrow cards */
.or-divider{ margin: 1.25rem 0 .75rem; }

/* Smaller screens */
@media (max-width: 420px){
  .login-card{ max-width: 92vw; padding: 22px 16px; }
}


.gsi-material-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 40px;
  padding: 0 14px;
  border-radius: 20px;
  border: 1px solid #dadce0;
  background: #fff;
  color: #1f1f1f;
  font-weight: 600;
  text-decoration: none;          /* for <a> */
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
  transition: box-shadow .15s ease, transform .02s ease, border-color .15s ease;
}

.gsi-material-button:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  border-color: #d0d5db;
}

.gsi-material-button:active {
  transform: translateY(1px);
}

.gsi-material-button-content-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

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

.gsi-material-button-contents {
  line-height: 1;
  white-space: nowrap;
}

/* Make it full-width on small screens if you like */
@media (max-width: 480px) {
  .gsi-material-button { width: 100% !important; }
}
