﻿.login-crm {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background-color: #e6ecf9;
    /*background-color: #00003d;*/
}

.login-container {
    display: flex;
    justify-content: center;
    max-width: 920px;
    height: 525px;
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 0px 18px 6px;
}

.login-container-left {
    width: 60%;
    background-color: #073cbe;
    height: 100%;
}

.crm-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-container-right {
    width: 40%;
    min-width: 400px;
    height: 100%;
}

/*form*/
.login-panel-box {
    height: 100%;
    width: 100%;
}

.login-card-form-crm {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 85%;
    border-radius: 24px;
}

.login-form-crm {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 1.8rem;
    /*    background-color: var(--form_bcolor1);*/
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    max-width: 445px;
    /*box-shadow: rgba(0, 0, 0, 0.24) 0px 0px 6px 6px;*/
    border-radius: 16px;
}

.crm-logo {
    height: 50px;
    padding: 8px;
}

.lableImage {
    direction: rtl;
    margin-top: 5px;
    font-weight: 600;
}

.login-title-crm {
    color: #000;
    font-size: 20px;
    margin: 10px 0;
    font-weight: 700;
    display: none;
}

input:focus {
    outline-color: #073cbe
}

.input-site-code-crm {
    color: var(--formInput_fcolor);
    font-size: 15px;
    padding: 8px 10px;
    border: none;
    border-right: 5px solid #073cbe;
    direction: rtl;
    margin: 12px;
    width: 100%;
    background-color: #f7f7f7;
}

.input-password-crm {
    color: var(--formInput_fcolor);
    font-size: 15px;
    padding: 8px 10px;
    border: none;
    border-right: 5px solid #073cbe;
    direction: rtl;
    width: 100%;
    background-color: #f7f7f7;
}

.pass-show, .pass-hide {
    position: absolute;
    top: 6px;
    left: 10px;
    fill: #787878;
    cursor: pointer
}

.pass-hide {
    display: none
}

.security-crm {
    width: 100%;
    margin: 10px;
    direction: rtl;
    display: flex;
    justify-content: space-between;
}

.input-security-code-crm {
    color: var(--formInput_fcolor);
    font-size: 15px;
    padding: 8px 10px;
    border: none;
    border-right: 5px solid #073cbe;
    width: 60%;
    background-color: #f7f7f7;
}

.captcha-container-crm {
    display: flex;
    padding-right: 5px;
}

.captcha-crm {
    width: 89px;
    height: auto;
    fill: #fff;
}

.captcha-btn-crm {
    height: auto;
    width: 47px;
    background-color: #073cbe;
    border: none;
    color: #fff;
}

.refresh-logo-crm {
    fill: #fff;
    height: 100%;
    width: 27px;
}


    .refresh-logo-crm:hover {
        animation-name: rotate;
        animation-duration: 1s;
        cursor: pointer;
        opacity: .8;
    }

@keyframes rotate {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(180deg)
    }
}

.login-checkbox {
    direction: rtl;
    display: flex;
    justify-content: flex-start;
    margin: 2px;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    accent-color: #073cbe;
}

    .login-checkbox > label {
        color: #000;
    }


.login-btn-crm {
    margin-top: 10px;
    width: 100%;
    font-size: 15px;
    border: none;
    cursor: pointer;
    padding: 10px 30px;
    color: white;
    transition: background 0.2s ease-in-out;
    background-color: #073cbe;
    box-shadow: 0 5px 10px #11111150;
}

    .login-btn-crm:hover, .mobile-btn:hover {
        background-color: #3337ee;
        color: white;
    }

.divider {
    border: 0;
    height: 3px;
    width: 100%;
    margin: 30px 0;
    background-image: linear-gradient(to right, rgba(7, 60, 190, 0), #073cbe, rgba(7, 60, 190, 0));
}

.mobile-container {
    display: flex;
    width: 100%;
    margin: 10px 0;
}

.mobile-btn {
    color: white;
    transition: background 0.2s ease-in-out;
    background-color: #073cbe;
    padding: 10px 30px;
    cursor: pointer;
    border: none;
    font-size: 15px;
    box-shadow: 0 5px 10px #11111150;
}

.input-number-crm {
    direction: rtl;
    font-size: 15px;
    padding: 8px 10px;
    border: none;
    border-right: 5px solid #073cbe;
    width: 80%;
    background-color: #f7f7f7;
}

@media (max-width : 780px) {
    .login-crm {
        background-size: cover;
        background-position: center;
        background-image: url(../Img/crm-login-image.jpg)
    }

    .login-card-form-crm {
        width: 100%;
    }

    .login-container-left {
        display: none;
    }
}

@media (max-width : 450px) {
    .login-container {
        height: auto;
    }

    .login-form-crm {
        max-width: 380px
    }
}
