.body_card {
    background-color: rgb(255, 255, 255);
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    overflow: hidden;
}

.left_page {
    position: absolute;
    width: 50%;
    height: 100%;
    border: 1px solid #ccc;
}

.left_page .bg_image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.left_page .header {
    position: absolute;
    width: fit-content;
    height: fit-content;
    top: 50%;
    transform: translate(10%, -50%);
}

.left_page .logo_image {
    width: 80px;
    margin: 20px 0 0 20px;
}

.left_page .text_logo {
    margin: -10px 0 0 5px;
}

.left_page .text_logo label {
    font-size: 28px;
}

.right_page {
    position: absolute;
    right: 0;
    width: 50%;
    height: 100%;
    padding: 0 5% 0 5%;
}

.right_page .header {
    width: 100%;
    margin: 20px;
}

.right_page .image {
    margin-top: -20px;
    margin-bottom: -50px;
    width: 200px;
}

.right_page .logo_header label {
    font-size: 12px;
}

.img_spce {
    margin-top: 50px;
    height: 100px;
}

.right_page .input_field img {
    width: 25px;
}

.right_page .input_field input {
    font-size: 15px;
}

.right_page .forgot a label {
    color: red;
    font-size: 15px;
}

.right_page .login_bt {
    background-color: #E24047;
    border-radius: 15.4px;
    color: #fff;
    border: none;
    font-size: 16px;
    padding: 5px;
    width: 100px;
    transition: all 0.3s;
    margin: 10px 0 20px 0;
}

.right_page .login_bt:hover {
    background-color: #e63942;
}

.right_page .sign_up_label {
    font-size: 14px;
    margin: auto;
    text-align: center;
}

.right_page .sign_up_header {
    font-size: 30px;
    margin: -10px 0 10px 0;
}

.right_page .forgot_header {
    font-size: 20px;
    white-space: nowrap;
    margin-left: -35px;
    margin-top: 15px;
    font-weight: 500;
}

.right_page .otp_tap {
    overflow-x: hidden;
}

@media only screen and (max-width: 1000px) {
    body {
        background-color: white;
        overflow: auto;
    }
    .left_page {
        display: none;
    }
    .right_page {
        left: 0;
        width: 100%;
    }
    .body_card {
        width: 500px;
        box-shadow: none;
    }
}

@media only screen and (max-width: 400px) {
    .right_page .login_bt {
        width: 100%;
    }
}

@media only screen and (max-width: 500px) {
    body {
        background-color: white;
    }
    .body_card {
        width: 440px;
        box-shadow: none;
    }
}

@media only screen and (max-width: 400px) {
    body {
        background-color: white;
    }
    .body_card {
        width: 390px;
        height: 600px;
        position: absolute;
        top: 20px;
        left: 50%;
        transform: translate(-50%, 0);
        box-shadow: none;
    }
}