/* Google Auth Button and Divider */
.or-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.2rem 0 0.7rem 0;
}
.or-divider span {
  color: #888;
  font-size: 1rem;
  background: #fff;
  padding: 0 1.1em;
  position: relative;
  z-index: 1;
}
.or-divider:before, .or-divider:after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e0e0e0;
  margin: 0 0.5em;
}

.google-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  background: #fff;
  color: #444;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1.05rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 0.8rem 0;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: box-shadow 0.2s, border 0.2s;
  box-shadow: 0 2px 8px 0 rgba(31, 38, 135, 0.07);
}
.google-btn:hover {
  border: 1px solid #7ed957;
  box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.13);
}
body { font-family: 'Poppins', sans-serif; }
#bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('assets/background-illustration.png') center center/cover no-repeat;
  z-index: -1;
}
.signup-card {
  max-width: 350px;
  margin: 80px auto;
  padding: 32px 28px;
  background: rgba(255,255,255,0.97);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  backdrop-filter: blur(8px);
  text-align: center;
}
.signup-card h2 { font-family: 'Montserrat', sans-serif; font-size: 2em; margin-bottom: 18px; color: #002C3E; }
.signup-card input {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: rgba(255,255,255,0.7);
  font-size: 1em;
}
.signup-card button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg,#7ed957 0%,#00c9a7 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-family: 'Montserrat', sans-serif;
  margin-top: 10px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s;
}
.signup-card button:hover {
  background: linear-gradient(90deg,#00BFAE 0%,#002C3E 100%);
}
.login-link { margin-top: 18px; font-size: 0.98em; }
#signup-message { margin-top: 12px; color: #d32f2f; font-size: 1em; }
