/* modal login */

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    color: #121212;
    margin-bottom: 6px;
    text-align: left;
}

.modal.modal-login  {
   overflow: hidden;
}

.modal-dialog {
    width: 100vw;
    margin: 0 auto;
}
.modal-login .modal-content {
    border-radius: 8px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 30px;
    border: unset;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.modal-login .modal-content h2,
.tfre-resset-password h4 {
    font-size: 30px;
    font-weight: 500;
    line-height: 42px;
    color: #121212;
    margin-bottom: 30px;
}
.modal-login .modal-content .close {
    padding: unset;
    background: unset;
    background: transparent;
    border-radius: unset;
    font-size: 34px;
    position: absolute;
    top: 30px;
    right: 30px;
    font-weight: 400;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #121212;
}
.modal-login .modal-content .close::before,
.modal-login .modal-content .close::after {
    display: none;
    color: #121212;
}
.modal-login .modal-content .close:hover {
    transform: rotate(90deg);
}
.modal-login .modal-content .close:hover {
    color: var(--theme-primary-color);
}
.modal-login .modal-dialog {
    max-width: 450px;
    display: block;
    width: 100%;
    height: 100%;
}

.modal.modal-login.show .modal-dialog {
    margin: 0 auto;
}

.modal-login .nav-tabs {
    border: unset;
}
.modal-login .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 150%;
    color: #121212;
    margin-bottom: 7px;
    text-align: left;
}
.modal-login .form-group input {
    display: block;
    width: 100%;
    padding: 11px 15px;
    border-radius: 8px;
    background-color: #fff;
    color: #5E6267;
    font-size: 16px;
    font-family: "Jost";
    line-height: 26px;
    font-weight: 400;
    border: 1px solid #E9E9E9;
}
.modal-login .container {
    padding: unset;
}
.modal-login .form-group {
    margin-bottom: 16px;
}
.modal-login .tfre-reset-password {
    display: block;
    font-size: 14px;
    color: var(--theme-primary-color);
    text-align: right;
}
.modal-login .tfre-reset-password:hover {
    color: #121212;
}
.modal-login button[type="submit"],
.tfre-resset-password .tfre_forgetpass {
    display: block;
    width: 100%;
    color: #121212;
    margin-top: 18px;
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    border: unset;
    border-radius: 6px;
    padding: 10px 16px;
    background-color: var(--theme-primary-color);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.modal-login button[type="submit"]:hover,
.tfre-resset-password .tfre_forgetpass:hover {
    background-color: #121212;
    color: #fff;
}

.modal-login button[type="submit"]::before,
.modal-login button[type="submit"]::after {
    display: none;
}
.tfre_register,
.tfre_signin {
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    line-height: 150%;
    margin-top: 20px;
}

.tfre_login_redirect,
.tfre_register a,
.tfre_signin a {
    color: #121212;
}

.tfre-resset-password .tfre_forgetpass {
    padding: 16px 18px;
    border-radius: 10px;
    background: #121212;
}

.field-pass {
    position: relative;
}
.field-pass i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.togglepassword {
    cursor: pointer;
}
@media (max-width: 500px) {
    .modal-login .modal-dialog {
        max-width: 90%;
    }
}
