body {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: 500;
  background-color: white;
}

a {
    color: #06853A;
}

.eye-icon {
    position: absolute;
    right: 6px;
    width: 25px;
    height: 25px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

fieldset {
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
  color: black;
  border-radius: 8px;
  position: relative;
  border: 2px dashed #06853A;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.info {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 5px;
}


.action-btns {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 10px;
}

.verify {
  font-size: 16px;
  color: white;
  margin: 0 auto;
  width: 100%;
  background-color: #06853A;
  padding: 10px 20px;
  border-radius: 20px;
  margin-top: 5px;
  cursor: pointer;
  border: none;
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.6; 
}

@media (max-width: 768px) {
  form {
    max-width: 100%;
  }
}

.floating-input-content {
  width: 100%;
  position: relative;
}

.floating-input {
  font-size: 14px;
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  caret-color: #06853A;
  background: white;
  color: black;
  border: 1px solid #06853A;
  border-radius: 10px;
  box-sizing: border-box;

  &:focus {
    outline: none;
    border: 2px solid #06853A;

    ~.floating-label {
      top: -8px;
      font-size: 13px;
      color: #06853A;
    }
  }
}

.floating-input:not(:placeholder-shown)~.floating-label {
  top: -8px;
  font-size: 13px;
}

.floating-input-error {
  font-size: 14px;
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  caret-color: #06853A;
  background: white;
  color: black;
  border: 1px solid red;
  border-radius: 10px;
  box-sizing: border-box;

  &:focus {
    outline: none;
    border: 2px solid red;

    ~.floating-label {
      top: -8px;
      font-size: 13px;
      color: red;
    }
  }
}

.floating-input-error:not(:placeholder-shown)~.floating-label {
  top: -8px;
  font-size: 13px;
}

.floating-label {
  color: black;
  font-size: 13px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 14px;
  top: 12px;
  padding: 0 5px;
  background: white;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

.preloader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.password-mismatch-alert,
.error-alert {
  position: fixed;
  top: 18%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background-color: black;
  width: 90%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: 15px;
  padding: 5px;
  text-align: center;
  border-radius: 20px;
  display: none;
  z-index: 99999;
}

.submit-btn {
  font-size: 16px;
  color: white;
  margin: 0 auto;
  width: 100%;
  background-color: #06853A;
  padding: 10px 20px;
  border-radius: 20px;
  margin-top: 5px;
  cursor: pointer;
  border: none;
  text-align: center;
}