﻿.login-page-continer {
    background-image: url('../images/login//LoginBackgroundIDesktopmage.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
}

.login-box {
    width: 456px;
    padding: 32px;
    border: 1px solid #EDEDED;
    border-radius: 8px;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
}

.login-box-title {
    color: #2C3E50;
    font-size: 28px;
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 32px;
}

.login-description {
    color: #6C7278;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.login-input-box {
    margin-bottom: 32px;
}

.login-text-input-field {
    color: #2C3E50;
    border-radius: 8px;
    outline: none;
    border: 1px solid #ADADAD;
    padding: 12px;
}
    .login-text-input-field::placeholder {
        color: #ADADAD;
    }

.orange-btn {
    width: 100%;
    background-color: #E74C3C;
    color: #FFFFFF;
    border: none;
    outline: none;
    padding: 11px;
    border-radius: 8px;
    text-align: center !important;
}
.orange-btn:hover {
    background-color: #E74C3C;
    color: #ECF0F1 !important;
}

.login-number-field {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid #CBCBCB;
}

    .login-number-field input {
        border: none;
        background: transparent;
        width: 100%;
        height: 100%;
        text-align: center;
        color: #2C3E50;
    }

        .login-number-field input:focus {
            border: none;
            outline: none;
            background: transparent;
            width: 100%;
            height: 100%;
            text-align: center;
        }

    .login-number-field::after {
        content: "";
        position: absolute;
        z-index: 10;
        bottom: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 28px;
        height: 1px;
        background-color: #868686;
    }

.login-number-filed-container {
    width: 252px;
    display: flex;
    gap: 4px;
}
.send-message-text {
    color: #6C7278;
    font-size:14px;
    font-weight:500;
}
.send-message-text-2 {

}
#resend-code-button {
    color: #CBCBCB;
    font-size: 14px;
    font-weight: 500;
    border:none;
    outline:none
}
.outline-none {
    outline: none;
}

.max-w-100 {
    max-width: 100%;
}

.max-h-100 {
    max-height: 100%;
}
.toobtoor-img-container {
    position: absolute;
    display: block;
    width: 83px;
    height: 62px;
}
.back-btn {
    margin-top: 23px !important;
    color: #2C3E50 !important;
    font-size: 18px !important;
    font-weight:600;

}
.mobile-back-button-box {
    width: 80%;
    color: #717171 !important;
    justify-content:space-between;
    top: 45px;
    left: 50%;
    font-size:20px;
    transform: translateX(-50%);
}
.mobile-backbtn {
    color: #717171 !important;
}
.privacy-policy-notice {
    margin-top: 32px;
    font-size: 12px;
    color: #6C7278;
}
    .privacy-policy-notice span {
        color: #E74C3C;
    }
    /*---------------media query--------------------------*/
@media (max-width: 568px) {
    .login-page-continer {
        background-image: url('../images/login/loginbgImageMobile.png'); 
    }
    .login-box-title{
        font-size:18px;
    }

}