@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
}

#form-section {
  background: #fff;
  box-shadow: 0 0 15px #03a9f324;
  border-radius: 14px;
  margin: auto;
  padding-inline: 0;
  overflow: hidden;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: auto;
}

#background-section {
  background: url(../img/login-bg.jpg) center center/cover no-repeat !important;
  height: 100dvh;
  position: relative;
}
#background-section::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

#auth-form {
  width: 100%;
  margin: auto;
  padding: 10%;
}

#auth-logo {
  padding: 7% 11%;
  background: #eeebeb;
}

.form-horizontal .form-group {
  margin-left: -7.5px;
  margin-right: -7.5px;
  margin-bottom: 25px;
  position: relative;
}

.toggle-password {
  position: absolute;
  z-index: 2;
  right: 15px;
  top: 13px;
  font-size: 15px;
  cursor: pointer;
}

.form-control,
.select2-container {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 12px;
  border: none;
  outline: none;
  border-radius: 10px !important;
  min-height: 45px;
  height: auto;
  padding-left: 10px;
  padding-right: 10px;
  background-color: white;
  font-size: 12px !important;
}

.form-control:focus {
  box-shadow: rgba(4, 65, 134, 0.1) 0px 0px 12px;
}

.form-group:has(.toggle-password) .form-control {
  padding-right: 40px;
}

select.form-control {
  background: #fff url(../img/caret-down-bold.svg) no-repeat calc(100% - 10px) center / 16px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding-right: 30px;
}

#checkbox-signup {
  margin-left: 3px;
  margin-top: 1px;
}

.checkbox label {
  min-height: 20px;
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}

.checkbox label::before {
  -o-transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  background-color: #fff;
  border-radius: 1px;
  border: 1px solid rgba(120, 130, 140, 0.13);
  content: "";
  display: inline-block;
  height: 17px;
  left: 0;
  position: absolute;
  transition: 0.3s ease-in-out;
  width: 17px;
  outline: 0 !important;
}

.checkbox label::after {
  color: #2b2b2b;
  display: inline-block;
  font-size: 11px;
  height: 16px;
  left: 0;
  padding-left: 3px;
  padding-top: 1px;
  position: absolute;
  top: 0;
  width: 16px;
}

.checkbox input[type="checkbox"]:checked+label::after {
  content: "\f00c";
  font-family: FontAwesome;
}

.btn-info,
.btn-info.disabled {
  background: #03a9f3;
  border: 1px solid #03a9f3;
}

.text-dark {
  color: #171e28;
}

.form-horizontal .checkbox {
  padding-top: 0;
}

/* Facebook */
.btn-facebook {
  background: #3b5998;
  color: white;
}

/* Twitter */
.btn-twitter {
  background: #55acee;
  color: white;
}

/* Google */
.btn-google {
  background: #dd4b39;
  color: white;
}

/* Linkedin */
.btn-linkedin {
  background: #007bb5;
  color: white;
}

.btn-facebook:hover,
.btn-twitter:hover,
.btn-google:hover,
.btn-linkedin:hover {
  color: white;
}

@media (max-width: 768px) {
  #auth-logo {
    text-align: center;
  }
}

.row.login-page {
  display: flex;
  align-items: start;
  justify-content: start;
  min-height: 100dvh;
}