/* =======================================
   Guest Login Box Styling (modern layout)
   ======================================= */
.guest-login-box {
  text-align: center;
  background: rgba(255,255,255,0.9);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  margin-top: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Headline text */
.must-log-in-text {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #374151;
}

/* =======================================
   Flex layout for row alignment
   ======================================= */
.login-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* When no social login exists → center login button */
.login-row.no-social {
  justify-content: center;
}

/* Login Button (left) */
.login-btn {
  display: inline-block;
  background: #0ea5e9;
  color: #fff;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.login-btn:hover {
  background: #0284c7;
}

/* OR Text (middle) */
.or-text {
  font-size: 1.5rem;
  font-weight: 500;
  color: #6b7280;
  user-select: none;
  margin: 0 0.2rem;
}

/* Social login (right) */
.social-login {
  display: flex;
  justify-content: center;
  align-items: center;
}


}
