@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.login {
  font-family: "Roboto", sans-serif;
  display: flex;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}
.login .banner {
  filter: hue-rotate(57deg);
}
.login div {
  margin: 10% 8%;
}
.login div h1 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 42px;
  line-height: 49px;
  color: #2b2b32;
  margin-bottom: 0;
}
.login div h2 {
  color: rgb(129, 129, 140);
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
.login div form {
  display: flex;
  flex-direction: column;
}
.login div form label {
  font-size: 0.875rem;
  font-weight: 400;
}
.login div form input {
  width: 18.75rem;
  height: 3.125rem;
  border: 1px solid rgb(129, 129, 140);
  border-radius: 4px;
  font-size: 16px;
  padding-left: 19px;
  margin-bottom: 2rem;
}
.login div form input[type=submit] {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: rgb(255, 255, 255);
  border-radius: 4px;
  width: 18.75rem;
  height: 3.125rem;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  background: rgb(0, 88, 87);
  cursor: pointer;
}
.login div form .pass-label {
  position: relative;
  width: 300px;
}
.login div form .pass-label p {
  padding: 0;
  margin: 0;
}
.login div form .pass-label img {
  position: absolute;
  width: fit-content;
  height: 32px;
  right: 6px;
  top: 25px;
  opacity: 0;
}
.login div form .pass-label input:focus + img {
  opacity: 0.35;
}
.login div form .pass-label input::-ms-reveal {
  display: none;
}

#account-selection-popup-container {
  margin: 0 !important;
  position: fixed;
  inset: 0;
  /* shorthand for top/right/bottom/left:0 */
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
#account-selection-popup-container #account-selection-popup {
  background: #fff;
  width: 500px;
  height: fit-content;
  max-width: 90%;
  padding: 28px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  text-align: center;
  animation: fadeInUp 0.3s ease-out;
}
#account-selection-popup-container #account-selection-popup h3 {
  margin: 0 0 18px 0;
  font-size: 24px;
  font-weight: 600;
  color: #222;
}
#account-selection-popup-container #account-selection-popup > div {
  margin: 0 !important;
  margin-bottom: 20px !important;
  font-size: 16px;
  line-height: 1.5;
  color: #555;
}
#account-selection-popup-container #account-selection-popup > div div:first-child {
  font-weight: 500;
  margin-bottom: 6px;
}
#account-selection-popup-container #account-selection-popup select {
  width: 50%;
  padding: 12px 14px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
}
#account-selection-popup-container #account-selection-popup select:hover {
  border-color: #888;
}
#account-selection-popup-container #account-selection-popup select:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
  outline: none;
}
#account-selection-popup-container #account-selection-popup select {
  margin: 0 !important;
  margin-bottom: 20px !important;
}
#account-selection-popup-container #account-selection-popup .account-buttons {
  margin: 0 !important;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
#account-selection-popup-container #account-selection-popup .account-buttons a.accounts-cancel,
#account-selection-popup-container #account-selection-popup .account-buttons button.accounts-continue {
  margin: 0 !important;
  flex: 1;
  text-align: center;
  padding: 12px 0;
  border-radius: 4px;
  font-weight: bold;
  padding-block: 10px;
  color: #fff;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  font-size: 16px;
}
#account-selection-popup-container #account-selection-popup .account-buttons a.accounts-cancel {
  background-color: rgb(129, 129, 140);
}
#account-selection-popup-container #account-selection-popup .account-buttons button.accounts-continue {
  background-color: rgb(0, 88, 87);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.red {
  border-color: red !important;
  outline: red !important;
}

/*# sourceMappingURL=not_logged_in.css.map */
