/* Login screen */

.login-container {
    display: flex;
    width: 1600px;
    height: 100vh;
    padding: 0 230px 0 230px !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 100px;
    flex-shrink: 0;
}

.login_title_container {
    margin-bottom: -50px;
}

.login_title {
    color: #000;
    text-align: center;
    font-family: Rubik;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.login_sign_in {
    color: #181C32;
    text-align: center;
    font-family: Inter;
    font-size: 22.75px;
    font-style: normal;
    font-weight: 700;
    line-height: 27.3px;
}

.custom_btn_google {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 212.63px;
    height: 43.56px;
    padding: 13.06px 27.89px 13.5px 28.06px;
    gap: 9.75px;
    flex-shrink: 0;
    border-radius: 8.45px;
    border: 1px solid #E1E3EA;
}

.custom_btn_google_text {
    color: #5E6278;
    text-align: center;
    font-family: Inter;
    font-size: 14.3px;
    font-style: normal;
    font-weight: 500;
    line-height: 21.45px;
    margin-bottom: 0
}

.custom_btn_apple {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 212.63px;
    height: 43.56px;
    padding: 13.06px 27.89px 13.5px 28.06px;
    gap: 9.75px;
    flex-shrink: 0;
    border-radius: 8.45px;
    border: 1px solid #E1E3EA;
}

.custom_btn_apple_text {
    color: #5E6278;
    text-align: center;
    font-family: Inter;
    font-size: 14.3px;
    font-style: normal;
    font-weight: 500;
    line-height: 21.45px;
    margin-bottom: 0
}

.container_login_forgot {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    width: 100%;
}

.login_forgot {
    color: #000;
    font-family: Inter;
    font-size: 13px;
    font-style: bold;
    font-weight: 500;
    line-height: 19.5px;
    margin-bottom: 28px;
}

.custom_btn_signin {
    border-radius: 8.45px;
    background: #000;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 11.06px 193.66px 10.5px 194.34px;
    color: white;
    margin-bottom: 30px;
}

.custom_not_a_member {
    color: #A1A5B7;
    text-align: center;
    font-family: Inter;
    font-size: 13.975px;
    font-style: normal;
    font-weight: 500;
    line-height: 20.962px;
    margin-bottom: 50px
}

.custom_signup {
    color: #000;
    font-family: Inter;
    font-size: 13.975px;
    font-style: normal;
    font-weight: 500;
    line-height: 20.962px;
}

.login_footer_container {
    display: flex;
    /* padding: 0px 32.29px 0px 32.5px; */
    justify-content: space-between;
    align-items: center;
    gap: 163.3px;
}

.img_btn {
    width: 15px;
    height: 15px;
}

.img_flag {
    width: 20px;
    height: 20px;
}

.left_container {  
    display: flex;
    justify-content:center;
    align-items: center;
}

.custom_select {
    border: none;
}

.custom_options {
    color: #5E6278;
    text-align: center;
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 19.5px;
}

.right_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 13.3px;
}


.right_container_links {
    color: #000;
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
}

@media only screen and (max-width: 768px) {
    .login-container {
        width: 100%;
        padding: 0 20px !important;
    }

    .custom_btn_google, .custom_btn_apple {
        width: 100%;
    }

    .custom_btn_signin {
        padding: 11.06px 50px 10.5px 50px;
        width: 100%;
    }

    .login_footer_container {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
    }

    .right_container {
        /* flex-direction: column; */
        gap: 10px;
    }
}
