/* Center override for this page */
main.main-content {
  display: block !important;
  padding: 0;
  margin: 0;
}

/* Hero intro */
.contact-hero {
  max-width: 500px;
  margin: 3rem auto 2rem;
  text-align: center;
}
.contact-hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.contact-hero p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: white;
  opacity: 0.9;
}

/* Form wrapper */
.contact-form-container {
  max-width: 500px;
  margin: 0 auto 4rem;
  padding: 2rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

/* Form styling */
.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: white;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  box-sizing: border-box;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(76, 145, 255, 0.4);
}

/* Submit button */
/* -------------------------------------------------------------------
   Google-Style Login Button
------------------------------------------------------------------- */
.google-login-btn {
  width: 50%;
  padding: 0.95rem;
  background: linear-gradient(180deg,#2563eb 0%,#1d4ed8 100%);
  border: none;
  border-radius: 14px;
  color: #fff;
  font-size: 1.05em;
  font-weight: 700;
  letter-spacing: .2px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(29,78,216,.35), inset 0 -2px 0 rgba(255,255,255,.18);
  transition: transform .08s ease, filter .18s ease, box-shadow .18s ease;
}
.google-login-btn:hover {
  filter: brightness(1.04);
  box-shadow: 0 10px 26px rgba(29,78,216,.42), inset 0 -2px 0 rgba(255,255,255,.22);
  transform: translateY(-1px);
}
.google-login-btn:active { transform: translateY(0); }
.google-login-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.google-login-btn:focus-visible {
  outline: 3px solid rgba(79,118,255,.45);
  outline-offset: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero,
  .contact-form-container {
    margin: 2rem 1rem;
    padding: 1.5rem;
  }
}
