html[dir="ltr"] body {
    font-family: "Inter", sans-serif !important;
}

html[dir="rtl"] body {
    font-family: "Cairo", sans-serif !important;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.login {
  background-color: #f5f6fc;
  flex-grow: 1;
}

.login .login__banner {
  width: fit-content;
  font-size: 0;
  margin: 0;
}

.login .login__banner img {
  max-width: 100%;
  max-height: 100vh;
}

.login .login__container {
  flex-grow: 1;
  padding: 50px;
}

.form-select {
  width: fit-content;
}

.login .login__container form {
  flex-grow: 1;
}

.login .login__container form > div {
  width: 60%;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 1px 3px 0px rgba(68, 153, 98, 0.1),
    0px 1px 2px 0px rgba(68, 153, 98, 0.06);
  padding: 32px;
  gap: 24px;
}

.login .login__title {
  color: #393939;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 8px;
}

label {
  color: #393939;
  font-size: 14px;
  font-weight: 700;
}

.login .login__submit-btn {
  border-radius: 8px;
  background: #35489b;
  border-color: #35489b;
  padding: 12px 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.form-check-label {
  color: #393939;
  font-size: 14px !important ;
  font-weight: 400 !important;
  margin-inline-start: 8px;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-toggle {
  background-color: white;
  border-color: white;
  padding: 12px !important;
  color: #393939;
  font-size: 14px !important;
  font-weight: 400 !important;
  gap: 12px;
}

.dropdown-toggle:hover,
.dropdown-toggle:active,
.btn.show {
  background-color: white !important;
  color: #393939 !important;
}
