html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.login .logo {
    margin: 0 auto;
    margin-top: 60px;
    text-align: center;
}

.login {
    font-family: 'Inter', sans-serif;
    background: #EBF1F6;
}

    .login .copyright {
        text-align: center;
        color: #8E98A7FF;
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
        margin: 0px auto;
    }

    .login .content {
        background-color: rgb(255, 255, 255);
        opacity: 1;
        position: relative;
        width: 420px;
        box-shadow: rgba(14, 24, 41, 0.06) 0px 1px 2px 0px, rgba(14, 24, 41, 0.1) 0px 1px 3px 0px;
        border-radius: 8px;
        margin: 44px auto 24px;
        padding: 48px;
    }

.form-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 38px;
    margin-bottom: 24px;
    color: var(--text-color-text-weak);
}

.input_label {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 4px;
    color: var(--text-color-text);
}

.button_btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 42px;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    cursor: pointer;
    border-width: 1px;
    border-style: solid;
    border-image: initial;
    border-color: transparent;
    padding: 0px 16px;
    border-radius: 8px;
    transition: 0.3s ease-in-out;
    white-space: nowrap;
}

.button_primary {
    color: rgb(255, 255, 255);
    background: #0939D7;
}

.forget-password {
    display: inline-block;
    margin-top: 16px;
}


.button_link {
    color: #0939D7 !important;
    background: transparent;
    text-decoration: none;
}

    .button_link:hover > i, .button_link.active, .button_link:hover {
        color: #000AACFF !important;
    }

.privacy_policy_wrapper {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: rgb(58, 74, 92);
}

    .privacy_policy_wrapper .divider_h {
        margin-top: 16px;
        margin-bottom: 16px;
        background: rgb(230, 233, 237);
        height: 1px;
    }