/*//////////////////////////////////////////////////////////////////
[ FONT ]*/
@font-face {
  font-family: Inter-Regular;
  src: url("../fonts/inter/Inter-Regular.ttf");
}

@font-face {
  font-family: Inter-Medium;
  src: url("../fonts/inter/Inter-Medium.ttf");
}

@font-face {
  font-family: Inter-Bold;
  src: url("../fonts/inter/Inter-Bold.ttf");
}

@font-face {
  font-family: Inter-SemiBold;
  src: url("../fonts/inter/Inter-SemiBold.ttf");
}

/*//////////////////////////////////////////////////////////////////
[ COLOR & FONT VARIABLES ]*/
:root {
  --primary-color: #121212;
  --text-color: #FFFFFF;
}

/*//////////////////////////////////////////////////////////////////
  [ RESTYLE TAG ]*/
* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Inter-Regular, sans-serif;
}

/*---------------------------------------------*/
a {
  font-family: Inter-Regular;
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
  margin: 0px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
  outline: none !important;
}

a:hover {
  text-decoration: none;
  color: #121212;
}

/*---------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  margin: 0px;
}

p {
  font-family: Inter-Regular;
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
  margin: 0px;
}

ul, li {
  margin: 0px;
  list-style-type: none;
}

/*---------------------------------------------*/
input {
  outline: none;
  border: none;
}

textarea {
  outline: none;
  border: none;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder {
  color: transparent;
}

textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

textarea:focus:-moz-placeholder {
  color: transparent;
}

textarea:focus::-moz-placeholder {
  color: transparent;
}

textarea:focus:-ms-input-placeholder {
  color: transparent;
}

input::-webkit-input-placeholder {
  color: #adadad;
}

input:-moz-placeholder {
  color: #adadad;
}

input::-moz-placeholder {
  color: #adadad;
}

input:-ms-input-placeholder {
  color: #adadad;
}

textarea::-webkit-input-placeholder {
  color: #adadad;
}

textarea:-moz-placeholder {
  color: #adadad;
}

textarea::-moz-placeholder {
  color: #adadad;
}

textarea:-ms-input-placeholder {
  color: #adadad;
}

/*---------------------------------------------*/
button {
  outline: none !important;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

iframe {
  border: none !important;
}

.row {
  margin-right: unset;
  margin-left: unset;
}

/*//////////////////////////////////////////////////////////////////
  [ Utility ]*/

.display-none {
  display: none !important;
}
.display-unset {
  display: unset !important;
}

.txt1 {
  font-family: Inter-Regular;
  font-size: 14px;
  line-height: 1.5;
  color: #666666;
}

.txt2 {
  font-family: Inter-Regular;
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
  text-transform: uppercase;
}

.bg1 {
  background-color: #3b5998;
}

.bg2 {
  background-color: #1da1f2;
}

.bg3 {
  background-color: #ea4335;
}

/*//////////////////////////////////////////////////////////////////
  [ login ]*/
.limiter {
  width: 100vw;
  margin: 0 auto;
}

.container-login {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
}

.tenant-info {
  width: 40%;
  position: unset;
}

.tenant-info .brand-title {
  font-family: Inter-Bold;
  font-weight: 700;
  font-size: 2rem;
  line-height: 125%;
  color: var(--text-color);
}

.tenant-info .brand-subtitle {
  font-family: Inter-Regular;
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-color);
  line-height: 125%;
}

.link-student-area, .link-student-area-mobile {
  position: absolute;
  bottom: 50px;
  height: 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.link-student-area:hover, .link-student-area-mobile:hover {
  bottom: 53px;
}

.link-student-area a, .link-student-area-mobile a {
  font-family: Inter-SemiBold;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 125%;
  color: var(--text-color);
}

.link-student-area-mobile {
  display: none;
}

.wrap-login {
  width: 450px;
  max-width: 450px;
  background: #EEF1F4;
  border-radius: 16px;
  -webkit-box-shadow: 0px 0px 48px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 0px 48px rgba(0, 0, 0, 0.16);
}

/*------------------------------------------------------------------
  [ Form ]*/
.login-form {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.login-form .titles-row {
  height: 20%;
}

.login-form .inputs-row {
  height: 50%;
}

.login-form .submit-row {
  height: 30%;
}

.login-form-title {
  display: block;
  font-family: Inter-SemiBold;
  font-weight: 600;
  font-size: 1.6rem;
  color: #505050;
  line-height: 150%;
  text-align: left;
}

.login-form-subtitle {
  font-family: Inter-Regular;
  font-weight: 400;
  font-size: 1rem;
  color: #505050;
  line-height: 150%;
  text-align: left;
}

.error-alert {
  width: 100%;
  height: 60px;
  text-align: center;
  background-color: #FFEFEF;
  -webkit-box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  color: #5A5566;
  line-height: 150%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.error-alert .error-title {
  font-family: Inter-SemiBold;
  font-weight: 600;
  font-size: 0.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.error-alert .error-message {
  font-family: Inter-Regular;
  font-weight: 400;
  font-size: 0.8rem;
}

.form-footer {
  font-family: Inter-Regular;
  font-weight: 400;
  font-size: 0.9rem;
  color: #121212;
}

.bold {
  font-family: Inter-SemiBold;
  font-weight: 600;
}

/*------------------------------------------------------------------
  [ Input ]*/
.wrap-input {
  width: 100%;
  position: relative;
}

.show-hide-password {
  position: absolute;
  right: 15px;
  top: 15px;
}

#openEye {
  display: none;
}

#openEye, #closedEye {
  transition: all ease 0.3s;
}

.wrap-input .login-input {
  border: 1.5px solid #B3B3B3;
  border-radius: 8px;
  transition: all ease 0.3s;
}

.label-input {
  font-family: Inter-Medium;
  font-weight: 500;
  font-size: 0.9rem;
  color: #121212;
  line-height: 150%;
  padding-left: 33px;
}

.login-input {
  font-family: Inter-Medium;
  font-size: 0.9rem;
  color: #121212;
  line-height: 150%;
  display: block;
  width: 100%;
  height: 55px;
  background: transparent;
  padding: 0 5px 0 20px;
}

.login-input::-webkit-input-placeholder {
  color: #121212;
}

.login-input:-ms-input-placeholder {
  color: #121212;
}

.login-input::-ms-input-placeholder {
  color: #121212;
}

.login-input::placeholder {
  color: #121212;
}

.checkbox-container {
  display: block;
  position: relative;
  font-size: 22px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  top: 21px;
  left: 0;
  height: 25px;
  width: 25px;
  z-index: 2;
}

.checkbox-container label {
  cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  z-index: 1;
  top: 21px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: transparent;
  border: 1px solid #B3B3B3;
  border-radius: 8px;
}

/* On mouse-over, add a greyish background color */
.checkbox-container:hover input ~ .checkmark {
  background-color: rgba(0, 0, 0, 0.16);
}

/* When the checkbox is checked, add a background */
.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary-color);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid var(--text-color);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark::after {
  display: block;
}

/*---------------------------------------------*/
.focus-input100 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input100::after {
  content: attr(data-symbol);
  font-family: Material-Design-Iconic-Font;
  color: #adadad;
  font-size: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  height: calc(100% - 20px);
  bottom: 0;
  left: 0;
  padding-left: 13px;
  padding-top: 3px;
}

.focus-input100::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #7f7f7f;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.input100:focus + .focus-input100::before {
  width: 100%;
}

.has-val.input100 + .focus-input100::before {
  width: 100%;
}

.input100:focus + .focus-input100::after {
  color: #a64bf4;
}

.has-val.input100 + .focus-input100::after {
  color: #a64bf4;
}

/*------------------------------------------------------------------
  [ Button ]*/
.container-login100-form-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.wrap-login100-form-btn {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0px 0px 16px rgba(18, 18, 18, 0.32);
  -moz-box-shadow: 0px 0px 16px rgba(18, 18, 18, 0.32);
  -webkit-box-shadow: 0px 0px 16px rgba(18, 18, 18, 0.32);
  -o-box-shadow: 0px 0px 16px rgba(18, 18, 18, 0.32);
  -ms-box-shadow: 0px 0px 16px rgba(18, 18, 18, 0.32);
}

.login100-form-bgbtn {
  position: absolute;
  z-index: -1;
  width: 300%;
  height: 100%;
  background: #a64bf4;
  background: -webkit-gradient(linear, right top, left top, from(#00dbde), color-stop(#fc00ff), color-stop(#00dbde), to(#fc00ff));
  background: linear-gradient(right, #00dbde, #fc00ff, #00dbde, #fc00ff);
  top: 0;
  left: -100%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn {
  font-family: Inter-Bold;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: var(--text-color);
  background-color: var(--primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 50px;
}

.wrap-login100-form-btn:hover .login100-form-bgbtn {
  left: 0;
}

/*------------------------------------------------------------------
  [ Alert validate ]*/
.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  bottom: calc((100% - 20px) / 2);
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  right: 2px;
  pointer-events: none;
  font-family: Inter-Regular;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f06a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 16px;
  bottom: calc((100% - 20px) / 2);
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  right: 8px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}

/*//////////////////////////////////////////////////////////////////
  [ Social item ]*/
.login100-social-item {
  font-size: 25px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 5px;
}

.login100-social-item:hover {
  color: #fff;
  background-color: #333333;
}

/*//////////////////////////////////////////////////////////////////
  [ Responsive ]*/
@media (max-width: 576px) {
  .wrap-login {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 768px) {
  .container-login {
    padding-bottom: 0;
    padding-top: 0;
  }
  .brand-title, .brand-subtitle, .link-student-area {
    display: none;
  }
  .link-student-area-mobile {
    display: unset;
    bottom: -60px;
  }
  .wrap-login {
    max-width: 350px;
    margin-bottom: 80px;
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .tenant-info {
    text-align: center !important;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 375px) {
  .wrap-login {
    max-width: 300px;
  }
}
