﻿/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}



.login-panel-box {
    height: calc(100% - 3.4rem);
}

.client-description-patient {
    text-align: center;
    direction: rtl;
    margin: 0;
    color: var(--form_fcolor);
    line-height: 30px;
    width: 100%;
    padding: 9px 2rem;
    font-size: 16px;
}
#modal-content {
    transition : .3s all ease-in-out ;
}
.login-card-form-patient {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 100%;
    border-radius: 24px;
}
label.error {
    color: red;
    font-size: .8rem;
    width: 100%;
    direction: rtl;
    text-align: start;
}
label#patientSecurityCode-error {
    position: absolute;
    bottom: 82px;
}

.patient-loginMethod {
    display : flex ;
    justify-content : center ;
    width : 100% ;
    align-items : center ;
    overflow :hidden
}
.patient-loginMehtod-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background-color: var(--formButton_bcolor1);
    color: var(--formButton_fcolor);
    border-radius: 10px;
    border: none;
    height: 110px;
    width: 150px;
    margin: 1rem 5px;
    transition: .1s all linear
}
    .patient-loginMehtod-btn p {
        font-size : 18px ;
        font-weight : 600;
        margin-bottom : 4px ;
    }
    .patient-loginMehtod-btn:hover {
        transform : scale(1.1)
    }
    .login-form-patient {
        display: none;
        /*display: flex;*/
        flex-direction: column;
        /*    background-color: var(--form_bcolor1);*/
        align-items: center;
        width: 100%;
        justify-content: space-between;
        min-height: 450px;
        border-radius: 0 0 16px 16px;
        padding: 8px 2rem 2rem 2rem;
    }
.btn-patient-login {
    cursor : pointer ;
}

.patient-logo {
    width: 80px;
    height: 80px;
    border: 4px solid var(--formButton_bcolor1);
    border-radius: 16px;
    background-color: #fff;
    padding: 8px;
    fill: var(--formButton_bcolor1);
    animation: 6s rotateY infinite linear;
}
@keyframes rotateY {
    0% {
        transform: rotateY(0)
    }

    100% {
        transform: rotateY(360deg)
    }
}

.btn-check-patient {
    accent-color: var(--formButton_bcolor1) ;
    position: relative;
    top: 4px;
}
.login-title {
    color: var(--form_fcolor);
    font-size: 20px;
    margin: 10px 0;
}

.modal-login input:focus {
    outline-color: var(--formButton_bcolor1)
}

.modal-login input {
    border: 1px solid var(--formInput_border)
}

.input-site-code, .national-code, .mobile-code, .checkVerifyCode-patient .checkVerifyCode-input {
    color: var(--formInput_fcolor);
    font-size: 17px;
    padding: 9px;
    border-radius: 10px;
    border: 2px solid #dee2e6;
    direction: rtl;
    margin: 12px 0;
    width: 100%;
    background-color: var(--formInput_bcolor1);
}

.security {
    width: 100%;
    margin: 12px;
    direction: rtl;
    display: flex;
    justify-content: space-between;
}

.input-security-code {
    color: var(--formInput_fcolor);
    font-size: 17px;
    padding: 9px;
    border-radius: 10px;
    border: none;
    width: 60%;
    background-color: var(--formInput_bcolor1);
}

.captcha-container {
    display: flex;
    padding-right: 5px;
}

.captcha {
    width: 100px;
    height: auto;
    fill: var(--formButton_fcolor);
    border-radius: 0 10px 10px 0;
}

.captcha-btn {
    height: auto;
    width: 47px;
    background-color: var(--formButton_bcolor1);
    border: none;
    border-radius: 10px 0 0 10px;
}

.refresh-logo {
    fill: var(--formButton_fcolor);
    height: 100%;
    width: 30px;
}

    .refresh-logo:hover {
        animation-name: rotate;
        animation-duration: 1s;
        cursor: pointer;
        opacity: var(--formButton_op);
    }

@keyframes rotate {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(180deg)
    }
}


.login-btn {
    margin-top: 15px;
    width: 100%;
    font-size: 16px;
    border: none;
    cursor: pointer;
    padding: 10px 30px;
    transition: background 0.2s ease-in-out;
    background-color: var(--formButton_bcolor1);
    color: var(--formButton_fcolor);
    border-radius: 10px;
    box-shadow: 0 5px 10px #11111150;
}

    .login-btn:hover {
        box-shadow: 0 5px 10px #1111118c;
    }

.checkVerifyCode-patient {
    width :100% ;
    display :flex ;
    justify-content :center ;
    flex-direction :column;
    padding :8px 2rem 2rem 2rem ;
    align-items :center;
}

.checkVerifyCode-patient .verify-code-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

    .checkVerifyCode-patient .verify-code {
        width: 50px;
        height: 50px;
        text-align: center;
        margin: 5px;
        direction: ltr;
        font-size: 19px;
        color: #000;
        padding: 9px;
        border-radius: 10px;
        border: 2px solid #dee2e6;
    }


    .checkVerifyCode-patient .verify-code.filled {
        border-color: var(--formButton_bcolor1) !important
    }
    .checkVerifyCode-patient .checkVerifyCode-label {
        direction: rtl;
        width: 100%;
        margin-top: 2rem;
        font-weight: 700;
    }

@media (max-width : 780px) {
    .login-card-form-patient {
        width: 100%;
    }
}
@media (max-width :576px) {
    .patient-loginMethod {
        flex-direction :column-reverse ;
    }
    .patient-loginMehtod-btn {
        flex-direction :row-reverse ;
        width :90% ;
    }
}