
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    border-radius: 50px !important;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--theme-color);
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}


:root {
    --theme-color: #3DA9E0;
    --bg-color: #fff;
}

* {
  font-family: sans-serif !important;
}

.app-auth-wrapper {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100vh;
    align-content: center;
    background: var(--bg-color);
    background-image: url(/assets/admin/images/home-contact-bg.jpg);
    /*background-image: url(/assets/admin/images/tradeyaho-bg.jpg);*/
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.dashboard-logo .dashboard-title a {
    font-size: 30px;
    font-weight: 800;
    color: #000;
    text-decoration: none;
    position: absolute;
    top: 20px;
    left: 20px;
    transition: 0.4s;
    display: inline-block;
}

.dashboard-logo .dashboard-title a:hover {
    transition: 0.4s;
    color: var(--theme-color);
}

.card.login-form-card {
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    border: none;
    background: #c7c9fa;
}

.card.login-form-card .card-header {
    text-align: center;
}

h4.dashboard-title {
    margin: 0;
}

h4.dashboard-title a {
    font-size: 30px;
    text-decoration: none;
    color: #000;
    font-weight: 800;
    line-height: normal;
    display: inline-block;
}

.card.login-form-card label.col-form-label {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    padding-bottom: 0;
}

.card.login-form-card input.input-fld {
    font-size: 16px;
    min-height: 40px;
    align-content: center;
    box-shadow: none;
    color: #000;
    border: 1px solid transparent;
}

.card.login-form-card input.input-fld:focus {
    border: 1px solid var(--theme-color);
}

.card.login-form-card .form-check input#remember {
    box-shadow: none;
}

.card.login-form-card .form-check {
    display: inline-block;
    text-align: left;
}

.card.login-form-card .forgot-password-link {
    display: inline-block;
    float: right;
    display: inline-block;
}

.card.login-form-card .forgot-password-link a.btn-link {
    color: #000;
    transition: 0.4s;
    font-size: 15px;
}

.card.login-form-card .forgot-password-link a.btn-link:hover {
    color: var(--theme-color);
    transition: 0.4s;
}

.login-form-buttons {
    text-align: center;
}

.login-form-buttons .submit-form-login button.same-btn-st {
    max-width: 100%;
    width: 100%;
    min-height: 40px;
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    background: var(--theme-color);
    border: 1px solid var(--theme-color);
    transition: 0.4s;
}

.login-form-buttons .submit-form-login button.same-btn-st:hover {
    transition: 0.4s;
    color: #000;
}

.login-form-buttons .register-form-link {
    margin-bottom: 10px;
}

.login-form-buttons .register-form-link a.nav-link {
    font-size: 16px;
    font-weight: 600;
    transition: 0.4s;
    color: #000;
}

.login-form-buttons .register-form-link a.nav-link:hover {
    transition: 0.4s;
    color: var(--theme-color);
}

.card.login-form-card form {
    margin: 0;
}

@media (max-width:767px) {
    
    .dashboard-logo .dashboard-title a {
        min-height: 60px;
        top: 20px;
        font-size: 25px;
    }
    
    h4.dashboard-title a {
        font-size: 20px;
    }
    
    .card.login-form-card label.col-form-label {
        font-size: 14px;
    }
    
    .card.login-form-card input.input-fld {
        font-size: 14px;
        min-height: 30px;
    }
    
    .card.login-form-card .form-check label.form-check-label {
        font-size: 12px;
    }
    
    .card.login-form-card .forgot-password-link a.btn-link {
        font-size: 12px;
    }
    
    .login-form-buttons .submit-form-login button.same-btn-st {
        min-height: 30px;
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .login-form-buttons .register-form-link a.nav-link {
        font-size: 14px;
    }
}
@media (min-width:767px) and (max-width:1024px) {
    .dashboard-logo .dashboard-title a {
        font-size: 25px;
        top: 10px;
    }
    
    h4.dashboard-title a {
        font-size: 22px;
    }
    
    .card.login-form-card label.col-form-label {
        font-size: 14px;
    }
    
    .card.login-form-card input.input-fld {
        font-size: 14px;
        min-height: 35px;
    }
    
    .card.login-form-card .form-check label.form-check-label {
        font-size: 13px;
    }
    
    .card.login-form-card .forgot-password-link a.btn-link {
        font-size: 13px;
    }
    
    .login-form-buttons .submit-form-login button.same-btn-st {
        font-size: 14px;
        min-height: 35px;
        margin-bottom: 10px;
    }
    
    .login-form-buttons .register-form-link a.nav-link {
        font-size: 14px;
    }
}