body {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.login_container {
    height: 100vh;
    width: 100vw;
    background: var(--signin_model_color_one);
    overflow: hidden;
    position: relative;
}

.login_image {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: var(--login_background);
    /* padding-top: 7%; */
}

.login_image_content {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 100%;
}

.login_image_profile {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

}

.login_image_profile img {
    width: 100%;
    object-fit: cover;
}

.login_image_text_content {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;

}

.login_image_content h1 {
    color: var(--signin_model_chakebox_accent_color);
    margin-bottom: 5px;
    font-weight: bolder;
    text-transform: capitalize;
    font-size: clamp(2rem, 4vw, 4rem);
    text-align: center;
    font-family: 'Font1', sans-serif;
}

.login_image_content h3 {
    color: var(--signin_model_chakebox_accent_color);
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: clamp(1rem, 3vw, 1.2rem);
}

/*           .login_sponsored_container {*/
/*               display: flex;*/
/*               align-items: center;*/
/*               flex-direction: column;*/
/*               justify-content: center;*/
/*               gap: 0px;*/
/*               width: 90%;*/
/*               padding: 10px 15px;*/
/*               border-radius: 5px;*/
/*               backdrop-filter: blur(10px);*/
/*               background: #0224710a;*/
/*           }*/

/*.login_sponsored_img_container{*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: space-between;*/
/*    width: 100%;*/
/*}*/

/*           .login_sopnsered_content {*/
/*               display: flex;*/
/*               align-items: center;*/
/*               justify-content: center;*/
/*               height: 80px;*/
/*               padding: 5px;*/
/*           }*/

/*           .login_image_content h5 {*/
/*               color: var(--signin_model_chakebox_accent_color);*/
/*margin-bottom: 10px;*/
/*               font-weight: bolder;*/
/*               text-transform: capitalize;*/
/*               font-size: 1rem;*/
/*               text-align: center;*/
/*           }*/

/*           .login_sopnsered_content img {*/
/*               width: 120px;*/
/*               object-fit: contain;*/
/*           }*/


.login_forms_container {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 58%;
    width: 100%;
    background: var(--signin_model_color_one);
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
    padding-top: 80px;
    box-shadow: 1px -3px 18px 0px #00000059;
}


.login_form_switch_container {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 55px;
    background: var(--signin_model_chakebox_accent_color);
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    padding: 3px 3px;
}

.login_form_switch_container button {
    width: 50%;
    border: none;
    background: transparent;
    color: var(--signin_model_color_one);
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: .3s;
}

.login_form_switch_container .active {
    background: var(--signin_model_color_one);
    border-radius: 17px;
    color: var(--signin_model_chakebox_accent_color);
}

.login_form_content {
    width: 100%;
    padding: 20px;
    position: absolute;
    bottom: 60px;
    left: 0;
}

.login_input {
    position: relative;
    margin-bottom: 30px;
}

.login_input input {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: 1px solid var(--signin_model_chakebox_accent_color);
    border-radius: 6px;
    outline: none;
}

.login_input label {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 14px;
    color: var(--signin_model_chakebox_accent_color);
    transition: .2s ease;
}

.login_input input:focus+label,
.login_input input:not(:placeholder-shown)+label {
    top: -10px;
    font-size: 12px;
    padding: 0 5px;
    background: var(--signin_model_color_one);
    color: var(--signin_model_chakebox_accent_color);
    font-weight: bold;
}

.login_btn {
    width: 100%;
    padding: 12px;
    background: var(--signin_model_chakebox_accent_color);
    border: none;
    border-radius: 8px;
    color: var(--signin_model_color_one);
    font-weight: bold;
    margin-top: 10px;
}

#warning_modal {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #00000099;
    display: none;
    justify-content: center;
    align-items: center;
}

#warning_box {
    background: var(--signin_model_color_one);
    padding: 20px 30px;
    width: 80%;
    border-radius: 10px;
    text-align: center;
    animation: zoomIn .3s ease forwards;
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes zoomOut {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(0.5);
        opacity: 0;
    }
}