@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
body{
  width: 100vw;
  overflow-x: hidden;
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-style: medium;
}
.auth-container {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  padding: 2em;
}
.auth-container .auth-bg {
  background-color: #2148C0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.auth-container .auth-bg img {
  position: absolute;
}
img.img-top-right {
  top: 0;
  right: 0;
  width: 89%;
}
img.img-ellipse-1 {
  left: 0;
  bottom: 0;
  width: 41%;
}
img.img-ellipse-2 {
  left: 0;
  bottom: 0;
  width: 35%;
}
img.img-ellipse-3 {
  left: 0;
  bottom: 0;
  width: 29%;
}
img.logo-white {
  max-width: 20em;
}
img.back-button-arrow {
  max-width: 25px;
}
.auth-header {
  position: relative;
  padding-bottom: 2em;
  z-index: 2;
}
.auth-header .back-btn {
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}
.auth-content {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 1 auto!important;
  flex: 1 1 auto !important;
}
.auth-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #FFFFFF;
  border: 1px solid #B9B9B9;
  border-radius: 15px;
  padding: 4em 3em;
}
.auth-box a {
  font-weight: 500;
  color: #0A63ED;
}
.auth-box-header {
  margin-bottom: 2em;
}
.auth-box-title {
  color: #202224;
  font-size: 2em;
  margin-bottom: 0.5em;
}
.auth-box-subtitle {
  color: #4D4E50;
  font-size: 1.25em;
  margin-bottom: 0;
}
.auth-box-additional{
  font-weight: 400;
  font-size: 1.2em;
}
.auth-box-additional a{
  text-decoration: underline;
}
.auth-box-additional-text {
  color: #6E6F71;
}
.auth-box-form {
  margin-bottom: 1em;
}
.auth-box .alert {
  font-size: 18px;
  font-weight: 400;
}
.auth-box .alert-danger {
  color: #DC3545 !important;
}
.auth-box .alert-danger .btn-close {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23DC3545'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");;
}
.auth-box .alert-success {
  color: #59BA8D !important;
}
.auth-box .alert-success .btn-close {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2359BA8D'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");;
}
.auth-box-form label {
  font-size: 1em;
  font-weight: 500;
  color: #4D4E50;
  margin-bottom: 0.5em;
}
.auth-box-form .form-control,
.auth-box-form .form-select {
  background-color: #F1F4F9;
  border: 1px solid #D8D8D8;
  font-size: 1em;
  font-weight: 400;
  border-radius: 10px;
  padding: 0.75em 1em;
  color: #161616 !important;
  box-shadow: none !important;
  outline: none !important;
}
.auth-box-form .form-control::placeholder {
  color: #A6A6A6 !important;
}
.auth-box-form .password-container {
  position: relative;
}
.auth-box-form .password-container .password-view-toggle {
  display: inline-block;
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  right: 1.25em;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('../../images/pages/auth/eye-cancel.svg');
}
.auth-box-form .password-container input[type="text"] ~ .password-view-toggle {
  background-image: url('../../images/pages/auth/eye.svg');
}
.auth-box-form .btn-auth {
  display: block;
  position: relative;
  width: 100%;
  color: #ffffff !important;
  background: linear-gradient(270deg,#243FB1,#0172F5) !important;
  font-weight: 500 !important;
  border-radius: 10px;
  font-size: 1.25em;
  padding: 0.75em 1em;
  z-index: 1;
}
.auth-box-form .styled-checkbox {
  display: none;
}
.auth-box-form .styled-checkbox ~ label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 2em;
  font-weight: 400;
  color: #797A7C;
}
.styled-checkbox ~ label::before {
  content: '';
  display: block;
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  border: 1px solid #A3A3A3;
  border-radius: 0.5em;
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.styled-checkbox:checked ~ label::before {
  background-image: url('../../images/pages/auth/check.svg');
}
.auth-box-form input[type="number"]::-webkit-inner-spin-button,
.auth-box-form input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.auth-box-form input[type="number"] {
  -moz-appearance: textfield;
}
.auth-box-form input[readonly="readonly"]{
  opacity: 0.5;
}
.code-placeholder {
  position: absolute;
  left: 1.25em;
  top: 50%;
  transform: translateY(-50%);
}
.code-input {
  letter-spacing: 10px;
}
.code-placeholder span {
  font-size: 24px;
  font-weight: 400;
  color: #B8B8B8;
  letter-spacing: 10px;
}
.code-placeholder span:first-child {
  color: #373535;
}