﻿body,
html {
  width: 100%;
  height: 100%;
  font-family: "Roboto";
  background-color: #f5f5f5;
}

a {
  color: #0099d1;
  cursor: pointer;
}

.custom-alert {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 8px 7px;
  background: #ffe9ec;
  border-radius: 4px;
}

.custom-alert-content {
  margin: 0px;
}

.content-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container {
  width: 428px;
  padding: 0px;
  margin: 0 0;
  border-radius: 4px;
  margin-top: 40px;
  background-color: white;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
    rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.form-heading {
  color: #000;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 32px;
}

.form {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.form-content {
  display: grid;
  width: 320px;
}

.submit-btn {
  border: 0;
  width: 100%;
  height: 36px;
  color: #fff;
  margin-top: 16px;
  border-radius: 4px;
  background-color: #0099d1;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 2px 0px;
  padding: 6px;
}

@media (min-width: 600px) {
  .submit-btn {
    width: fit-content;
    padding: 0 16px;
    height: 40px;
    justify-self: center;
  }
}

.login-button {
  margin-bottom: 40px;
}

.external-provider-button {
  margin-top: 0;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: #0099d1;
  background-color: #fff;
  border: 1px solid #a5cfff;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
  box-shadow: unset;
}

.external-provider-button:hover {
  background-color: #f5faff;
  border-color: #0099d1;
}

.external-provider-icon {
  margin-right: 10px;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #ddd;
  margin: 10px 0 16px 0;
}

.input-group {
  width: 100%;
}

.submit-btn[disabled] {
  background: #f2f2f2;
  color: rgba(0, 0, 0, 0.38);
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px;
  font-weight: 600;
}

.input-md {
  position: relative;
  width: 100%;
  margin-bottom: 16px;
}

.input-md input {
  -webkit-appearance: none;
  width: 100%;
  border: 0;
  height: 56px;
  font-size: 16px;
  border: 1px solid #ccc;
  background: none;
  border-radius: 4px;
  color: #000;
  padding: 16px;
}

.input-password input {
  padding-right: 40px;
}

.input-md span.error {
  position: relative;
  top: 2px;
  left: 10px;
}

.error-danger {
  color: red;
}

.alert {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 24px;
  background: #ffe9ec;
  border-radius: 4px;
}

.input-md input::after {
  width: 2px;
  height: 2px;
  background: red;
  position: absolute;
  top: 0;
  left: 0;
  content: "H";
}

.input-md input:focus {
  background: none;
  outline: none;
  border: 2px solid #0099d1;
}

.input-md .label {
  position: absolute;
  top: 16px;
  left: 0;
  font-size: 16px;
  color: #757575;
  font-weight: 500;
  transform-origin: 0 0;
  transition: all 0.2s ease;
  padding: 0.2em 0;
  color: #d8d8d8;
}

.input-md input:focus + label,
.input-md input:not(:placeholder-shown) + label,
.input-md input:-webkit-autofill + label {
  transform: translateY(-26px) scale(0.75);
  color: #757575;
}

.input-md input::placeholder {
  color: #757575;
}

/* checkbox style */
[type="checkbox"] {
  position: absolute;
  left: -9999px;
}

[type="checkbox"] + label {
  position: relative;
  padding-left: 1.8em;
  cursor: pointer;
  color: #757575;
  font-weight: 400;
  margin: 0px;
}

[type="checkbox"] + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 1.25em;
  height: 1.25em;
  border: 2px solid #757575;
  background: #fff;
  border-radius: 4px;
}

[type="checkbox"] + label:after {
  content: "\2713";
  position: absolute;
  top: 0.25em;
  left: 0.2em;
  font-size: 1em;
  line-height: 0.8;
  color: #757575;
  transition: all 0.2s;
  font-weight: 700;
}

[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}

[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

.show-password {
  fill: #757575;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

input::-ms-reveal {
  display: none;
}

.forgot-password-section {
  font-size: 14px;
  text-align: center;
  font-weight: 500;
}

.login-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.section-note {
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  margin-top: 22px;
}

.caption {
  padding-top: 32px;
  margin-bottom: 24px;
  color: #000;
}

.send-password-button {
  margin-top: 0px;
  margin-bottom: 16px;
}

.terms {
  color: #757575 !important;
}

.section-note a {
  color: #0099d1;
}

.input-validation-error::placeholder {
  color: #e4211f !important;
}

.input-validation-error {
  border: 2px solid #e4211f !important;
}

.green {
  color: #2ca02c;
}

.red {
  color: #e4211f;
}

.invalid-p1 {
  color: #757575;
  text-align: center;
  margin-top: -16px;
}

.invalid-p2 {
  color: #757575;
  text-align: left;
  margin: 32px;
}

.text-center {
  text-align: center;
}

.invalid-img {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.error-area {
  padding-top: 15px;
  margin-bottom: -35px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.error-message {
  color: #000;
  background-color: #f2dede;
  border-color: #ebccd1;
  border: 1px solid transparent;
  border-radius: 4px;
  width: 80%;
  padding-top: 10px;
}

.small-page {
  justify-content: flex-start;
  padding-top: 112px;
}

.forgot-username-message {
  padding: 32px 61px 24px 61px;
}

.login-note {
  padding-bottom: 32px;
  display: flex;
  justify-content: center;
}

.loaderDiv {
  width: 100%;
  display: none;
  margin-bottom: 24px;
  justify-content: center;
}

.loader {
  width: 30px;
}

.toast-center {
  width: 250px;
  top: 16px;
  right: calc(50vw - 125px);
  display: flex;
  justify-content: center;
}

.password-policy {
  margin-bottom: 16px;
}

.password-policy-option {
  font-size: 12px;
}

.password-icon {
  margin-right: 4px;
  margin-bottom: 2px;
}

.error-password-icon {
  content: url("/img/check-circle-red.svg");
}

.success-password-icon {
  content: url("/img/check-circle-green.svg");
}

.normal-password-icon {
  content: url("/img/check-circle-gray.svg");
}

.words-list {
  margin-top: 16px;
  margin-bottom: 32px;
  padding-left: 16px;
  max-height: 170px;
  overflow: auto;
}

.words-list:hover::-webkit-scrollbar-thumb:vertical {
  background: rgba(0, 0, 0, 0.5);
}

.words-list::-webkit-scrollbar {
  width: 7px;
  position: fixed;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 100px;
}

.words-list::-webkit-scrollbar:hover {
  background-color: rgba(0, 0, 0, 0.09);
}

.words-list::-webkit-scrollbar-thumb:vertical {
  background: rgba(0, 0, 0, 0);
  background-clip: "padding-box";
  border: "2px solid rgba(0, 0, 0, 0)";
  border-radius: 100px;
  min-height: 10px;
}

.words-list::-webkit-scrollbar-thumb:vertical:active {
  background: "rgba(0,0,0,0.61)";
  border-radius: 100px;
}
