﻿.loginPage {
  background: transparent url("../images//bg.jpg") 0% 0% no-repeat padding-box;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}

.form-container {
  padding: 30px 40px;
  width: 480px;
  background-color: white;
  border-radius: 18px;
  display: flex;
  flex-flow: column nowrap;
  gap: 20px;
  align-items: flex-start;
}

.success-container {
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.success-subtext1 {
  font-size: 30px;
  color: #007bff;
}

.success-subtext2 {
  font-size: 45px;
  color: #007bff;
  font-weight: bold;
}

.success-subtext-container {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}

.form-heading {
  color: #007bff;
  font-size: 30px;
  width: 100%;
  text-align: center;
}

.form-field {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
}

.reset-btn {
  margin-top: auto;
  min-width: 200px;
  align-self: center;
  font-size: 25px;
}

.loginButton {
  width: 200px;
  height: 54px;
  border-radius: 14px;
  font-size: 25px;
}

.form-label {
  align-self: flex-start;
}

.formBtn {
  min-width: 200px;
  align-self: center;
}

.internal-user-link {
  align-self: center;
}

.form-center {
  align-self: center;
}

.checkbox-label {
  margin-right: 10px;
}

.form-field-wrapper {
  display: flex;
  flex-flow: column nowrap;
  gap: 20px;
  width: 100%;
  align-items: flex-start;
}

.error-message {
  color: red;
  font-size: 16px;
}

.phone-number-label {
  font-size: 16px;
  color: gray;
}

.form-subheading {
  font-weight: 600;
  align-self: center;
  margin-top: -20px;
  margin-bottom: 0px;
}

.form-helper-text {
  margin-top: -12px;
  margin-bottom: -12px;
  text-align: right;
}

@media only screen and (max-width: 600px) {
  .loginPage {
    background: none;
  }

  .form-container {
    width: 100%;
    height: 100%;
    padding: 20px 16px;
    border-radius: 0;
  }

  .formBtn {
    font-size: 20px;
    font-weight: 600;
    width: 100%;
  }
}

/* Hide the eye icon for the input with id="password" across multiple browsers */
#password::-ms-reveal, /* Edge */
#password::-ms-clear, /* Edge */
#password::-webkit-textfield-decoration-container, /* Safari */
#password::-webkit-clear-button, /* Chrome/Safari clear button */
#password::-webkit-password-toggle {
  /* Chrome, Safari */
  display: none;
}
