
.form-container {
  width: 30rem;
  border-radius: 0.75rem;
  background-color: #ffffff; 
  padding: 2rem;
  padding-top: 1rem;
  color: #333; 
  box-sizing: border-box;
}



.h1 {
  text-align: center;
  font-size: 1.7rem;
  line-height: 2rem;
  font-weight: bolder;
  color: #00698f;
  text-transform: uppercase;
  font-family: fwc26, sans-serif;
}

.form {
  margin-top: 1.5rem;
  padding-right: 0;
  padding-left: 0;
  width: 100%;
  box-sizing: border-box;
}

.input-group {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  line-height: 1.25rem;
}

.input-group label {
  display: block;
  color: #666; /* dark gray label */
  margin-bottom: 4px;
}

.input-group input {
  width: 100%;
  border-radius: 0.375rem;
  border: 1px solid #ccc; /* light gray border */
  outline: 0;
  background-color: rgba(255, 255, 255,1); /* light gray background */
  padding: 0.75rem 1rem;
  color: #333; /* dark gray text */
  box-sizing: border-box;
}

.input-group input:focus {
  border-color: rgb(25, 60, 156); /* blue border on focus */
}

.forgot {
  display: flex;
  justify-content: flex-end;
  font-size: 0.8rem;
  line-height: 1rem;
  color: #666; /* dark gray forgot password */
  margin: 8px 0 14px 0;
}

.forgot a,
.signup a {
  color: #333; 
  text-decoration: none;
  font-weight: 600;
}

.forgot a:hover,
.signup a:hover {
  text-decoration: underline rgb(25, 60, 156); /* blue underline on hover */
}

.signup {
    margin-top: 2rem;
    margin-bottom: 0;
    text-align: center;
    font-size: 1rem;
    line-height: 1.2rem;
    text-transform: capitalize;
    color: #666;
}

@media (max-width: 768px) {
  .form-container {
    margin: 0 auto;      /* centers it */
    margin-top: 50rem;
    max-width: 99%;     
    background-color: rgba(247, 247, 247, 0.95);
    padding-left: 0.7rem;
    padding-right: 0.7rem;
    padding-top: 0.7rem;
    padding-bottom: 1rem;
  }

  .input-group input {
     background-color: rgba(247, 247, 247, 0.4);
  }


}

 .invisible { display: none !important; }
  .loading-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    width: 80vw;
    height: 50vh;
    max-width: 80vw;
    max-height: 50vh;
    padding: 14px 18px;
    border-radius: 10px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
  }
  .spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
  }
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
  .input-error {
    border-color: #ff0404 !important;
    outline-color: #ff0404 !important;
  }
  .error-text, .feedback-text {
    color: rgba(255, 4, 4,0.8);
    font-size: 0.7rem;
    margin-top: 6px;
    font-style: italic;
  }
  .loginfeedback-text{
    color: rgba(255, 4, 4,0.8);
    font-size: 0.9rem;
    text-align: center;
  }
  #login-feedback .feedback-text {
    text-align: center;
  }

.wc2026Btn{
    background: rgba(25,60,156,1);
    border-color: #687585;
    color:#fff;
    border-radius: 0 30px 30px 30px;
    padding: 14px 24px;
    transition: all 0.125s ease-in-out 0s;
}

 .mobile-login-pill {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 2200;
    border: 0;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #000000;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: opacity 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    font-size: 1.2rem;
  }
  .mobile-login-pill-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%);
  }
  @media (min-width: 769px) {
    .mobile-login-pill {
      display: none !important;
    }
  }