.container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: var(--gradient-login);
  font-family: 'Roboto Condensed';
}

/* background-image: var(--gradient-login); */

.logoContainer {
  margin-top: 1.7rem;
}

.formWrapper {
  background: var(--color-bg-surface);
  border-radius: 4px;
  box-shadow: 0 0 5px 2px rgba(255, 255, 255, 0.5);
  width: 100%;
  max-width: 350px;
  padding: 1.3rem;
  margin-top: 1.6rem;
  margin-bottom: 4.8rem;
}

.header {
  color: var(--color-primary);
  font-size: 1.3rem;
  text-align: center;
  font-weight: 400;

}

.inputWrapper {
  display: flex;
  align-items: stretch;
  margin-bottom: 1.3rem;
  border: 1px solid var(--color-border);

  overflow: hidden;
  background-color: var(--color-bg-input);
}

.fieldGroup {
  margin-bottom: 0.6rem;
}

.fieldLabel {
  font-weight: 400;
  color: #100f0f;
  /* Keeping specific color or move to var if exact match */
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.inputField {
  flex: 1 1;
  border: none;
  outline: none;
  padding: 0.4rem 0.5rem;
  font-size: 14px;
  color: #100f0f;
}


.logo {
  height: 4.75rem;
  margin-top: 5px;
  padding-left: 4px;
}

.inputIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  background-color: var(--color-bg-input-icon);
  border-left: 1px solid var(--color-border);
  color: var(--color-text-main);
}

.button {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  border: none;

  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background-color 0.2s;
}

.enterlogo1 {
  position: relative;
  left: 100px;
}

.enterlogo2 {
  position: relative;
  left: 60px;
}

.button:hover {
  opacity: 0.85;
}

.errorText {
  position: relative;
  color: red;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  height: min-content;
}

.messageText {
  margin-bottom: 0.5rem;
  color: var(--color-text-main);
  font-size: 0.95rem;
}

.recaptchaText {
  font-size: 10px;
  text-align: center;
  /* margin-top: 1rem; */
  color: var(--color-text-black);
  margin-bottom: 0;
}

.recaptchaText a {
  color: #0288d1;
  /* keeping this specific blue for now or map to primary */
  text-decoration: none;
}

.downloadApk {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  /* margin-top: 0.5rem; */
  color: #007bff;
  /* specific link color */
  /* font-weight: 500; */
  cursor: pointer;
}

.androidIcon {
  font-size: 1.3rem;
}

/* Footer Styles */
.footerContainer {
  width: 100%;
  background-color: var(--color-primary);
  margin-top: auto;
  display: flex;
  align-items: center;
  padding: 0 30px;
  color: var(--color-text-inverse);
  font-weight: bold;
  position: relative;
  min-height: 50px;
}

.footerLinks {
  display: flex;
  gap: 20px;
  z-index: 1;
}

.footerLinks span {
  cursor: pointer;
  font-size: 14px;
}

.supportText {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .formWrapper {
    padding: 0.75rem;
  }

  .logo {
    height: 4.5rem;
  }

  .logoContainer {
    margin-top: 0.4rem;
  }

  .footerContainer {
    flex-direction: column;
    gap: 10px;
    padding: 15px 20px;
    text-align: center;
  }

  .footerLinks {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.8rem;
  }

  .footerLinks span {
    font-size: 0.75rem;
    text-decoration: underline;
  }

  .supportText {
    position: static;
    transform: none;
    font-size: 1.4rem;
    margin-top: 5px;
  }
}