@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap");
.vls-body-class {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background-color: white;
  font-size: 18px;
  font-family: "Raleway", sans-serif;
}

.vls-no-display {
  display: none;
}

h1#kc-page-title {
  margin-top: 10px;
}

#kc-content {
  width: 100%;
  margin-top: 10px;
}

#kc-content-wrapper .row {
  margin-left: 0;
  margin-right: 0;
}

#kc-registration-container {
  width: fit-content;
  margin: auto;
}

p.instruction {
  margin-top: 20px;
}

.vls-centered-container {
  text-align: center;
  height: inherit;
}

.vls-login-box {
  background-color: white;
  padding: 10px 8px 10px 8px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  min-width: 350px;
  max-width: 400px;
  margin: 20px auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  touch-action: manipulation;
}

.vls-strip {
  width: 100%;
  height: 5px;
  background-color: #000000;
  border-radius: 10px 10px 0 0;
  position: absolute;
  top: 0;
  left: 0;
}

.vls-form-group {
  margin-bottom: 20px;
  width: 100%;
}

.vls-form-options {
  margin-bottom: 2px;
  font-size: 15px;
}

.vls-form-label {
  display: block;
  font-weight: normal;
  margin-bottom: 5px;
  color: gray;
  text-align: left;
  font-size: 14px;
}

.vls-label-wrapper {
  min-width: 300px;
  display: flex;
}

.vls-label-wrapper.subtitle {
  display: none;
}

.vls-form-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 20px;
}

.vls-number-pad {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 30px;
  user-select: none;
}

.vls-delete-button {
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background-color: #f0f0f0;
  font-size: 24px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.vls-delete-button:hover {
  background-color: #e0e0e0;
}

.vls-form-button {
  display: block;
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 18px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  text-align: center;
  text-decoration: none;
  background-color: #9CC2E8;
  color: white;
  border: none;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2), 0 0.125rem 0.625rem 0 rgba(0, 0, 0, 0.19);
}

.vls-form-button:hover {
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.vls-registration-button {
  background-color: white;
  color: black;
  border: black 2px solid;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2), 0 0.125rem 0.625rem 0 rgba(0, 0, 0, 0.19);
  align-content: center;
}

.vls-registration-button:hover {
  text-decoration: none;
  border-color: transparent;
  color: black;
}

.vls-forgot-password, .vls-form-input-error, a {
  display: block;
  color: #9CC2E8;
  text-align: center;
  margin-top: 5px;
  font-size: 15px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.vls-forgot-password:hover, a:hover, a:focus {
  color: #9CC2E8;
  text-decoration: underline;
}

.sign-up-link {
  display: block;
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: #555;
  text-decoration: none;
}

.sign-up-link:hover {
  text-decoration: underline;
}

.vls-form-buttons {
  display: flex;
  justify-content: center;
}

.password-container {
  position: relative;
}

.vls-clear-password {
  position: absolute;
  right: 5px;
  width: 50px;
  top: 40%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 70px;
  color: #9CC2E8;
  transition: color 0.3s;
}

.vls-clear-password:hover {
  color: #000000;
}

.vls-number-button {
  width: 67px;
  height: 67px;
  border: 4px solid #9CC2E8;
  border-radius: 50%;
  background-color: white;
  font-size: 35px;
  color: #9CC2E8;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  padding: 0 0 4px 0;
  margin: 5px 2px 15px 0;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

@media (hover: hover) {
  .vls-number-button:hover {
    background-color: #9CC2E8;
    color: white;
  }
}
.vls-alert-class {
  color: red;
  background-color: #ffe6e6;
  border: 1px solid red;
  border-radius: 5px;
  padding: 10px;
  text-align: center;
  font-family: "Raleway", sans-serif;
  margin-bottom: 20px;
}

.kc-error-icon {
  display: inline-block;
  margin-right: 10px;
}

.kc-feedback-text {
  font-weight: 700;
}

.authentication-header {
  font-size: 14px;
}

.flex-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-rows: 1fr;
  row-gap: 1rem;
}

.icon {
  width: 40px;
}

.icon-text {
  width: 200px;
  text-align: left;
}

.vls-social-icon {
  height: 25px;
}

.flex-container-center-align {
  display: inline-flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: row;
}

.vls-social-button {
  height: 50px;
}

.divider {
  display: flex;
}
.divider:before, .divider:after {
  content: "";
  flex: 1;
}

.line {
  align-items: center;
  margin: 1em -1em;
}
.line:before, .line:after {
  height: 1px;
  margin: 0 1em;
}

.one-line:before, .one-line:after {
  box-shadow: 0 0.5px 0 black;
}

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