.Login-css {
    color: black;
    padding: 200px;
}





/* Page center */
.auth-container {
  margin-top: 50px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f7fa, #ffffff);
  font-family: "Segoe UI", sans-serif;
}

/* Card */
.auth-card {
  width: 100%;
  max-width: 360px;
  height: auto;
  background: #fff;
  padding: 30px;
  padding-top: 50px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  text-align: center;
}

/* Title */
.auth-card h2 {
  margin-bottom: 6px;
  font-size: 24px;
}

.auth-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

/* Floating inputs */
.input-group {
  position: relative;
  margin-bottom: 22px;
}

.input-group input {
  width: 100%;
  padding: 12px 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  outline: none;
}

.input-group label {
  position: absolute;
  top: 50%;
  left: 12px;
  color: #888;
  font-size: 13px;
  pointer-events: none;
  transform: translateY(-50%);
  background: #fff;
  padding: 0 4px;
  transition: 0.2s ease;
}

/* Floating effect */
.input-group input:focus + label,
.input-group input:valid + label {
  top: -6px;
  font-size: 11px;
  color: #000;
}

/* Button */
.auth-btn {
  width: 100%;
  padding: 12px;
  background: #000;
  color: #ededed;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.auth-btn:hover {
  background: #222;
  transform: translateY(-1px);
}

/* Footer */
.auth-footer {
  margin-top: 8px;
  font-size: 13px;
  color: #555;
}

.auth-footer a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}



.circle-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Image inside */
.circle-btn img {
  width: 70px;
  height: 100px;
  object-fit: contain;
  border-radius: 100px;
}

/* Hover / click */
.circle-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.circle-btn:active {
  transform: scale(0.95);
}


.circle-btn:hover {
  background-color: #ffffff;
}

.auth-container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-card {
  position: relative;
  width: 360px;
  height: 430px;
  padding: 32px;
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,.1);
}

.auth-panel {
  position: absolute;
  inset: 0;
  padding: 32px;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.auth-panel.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}

.google-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}



.google-btn {
  width: 100%;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  font-size: 15px;
  font-weight: 500;
  color: #3c4043;

  background: #ffffff;
  border: 1px solid #dadce0;
  border-radius: 12px;

  cursor: pointer;
  user-select: none;

  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.04);

  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.1s ease;
}

/* Google icon */
.google-btn img {
  width: 20px;
  height: 20px;
}

/* Hover */
.google-btn:hover {
  background: #f8f9fa;
  box-shadow:
    0 3px 8px rgba(0, 0, 0, 0.12);
}

/* Active (click) */
.google-btn:active {
  transform: scale(0.97);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.12);
}

/* Focus (keyboard users) */
.google-btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(66, 133, 244, 0.35),
    0 3px 8px rgba(0, 0, 0, 0.12);
}


/* Hide elements */

.hidden {
  display: none;
}

/* Logged-in message */
.message-container {

  margin-top: 100px;
  max-width: 400px;
  margin: 40px auto;
  height: 300px;
  padding: 80px;
  background: #ffffff;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.message-container h1 {
  margin-bottom: 10px;
  font-size: 26px;
  color: #222;
}

.message-container p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

.logout-btn {
  padding: 10px 20px;
  background: #ff03ab;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
}

.logout-btn:hover {
  opacity: 0.9;
}














/* MOBILE: login or page layout adjustments */
@media (max-width: 768px) {
  html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* prevent horizontal scroll */
    display: flex;
    flex-direction: column;
  }

  /* Navbar taller for mobile */
  .navbar {
    flex: 0 0 80px; /* fixed height 80px */
    width: 100%;
    z-index: 1000;
    background-color: #f8f9fa;
  }

  /* Scrollable main content */
  #scroll-container {
    flex: 1 1 auto; /* take remaining space between navbar and footer */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
    padding: 15px;
  }

  /* Footer taller for mobile */
  footer.site-footer {
    flex: 0 0 150px; /* fixed height 150px */
    width: 100%;
    background-color: #111;
    color: #fff;
    text-align: left;
    padding: 20px 10px;
    box-sizing: border-box;
  }


  .footer-contact {
    font-size: 12px;
  }


  .auth-card {
    margin-top: 50px;
  }

  .for-moms {
    margin-left: -10px;
  }

  
}
