.login_form {
    display: flex;
    direction: rtl;
    flex-direction: column;
    justify-content: center;
    width: 40%;
    margin: auto;
    margin-top: 100px;
    margin-bottom: 150px;
    padding: 10px;
}

.login_title {
    font-size: 35px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.login_subtitle {
    font-weight: 700;
    font-size: 20px;
    color: white;
}

.underline_span {
    text-decoration: underline;
    font-weight: 600;
}

.underline_span a:hover{
    color:white !important;
}

.login_form_container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.loginform_input {
    border-radius: 100px;
    text-indent: 20px;
    width: 100%;
    border: none;
    outline: none;
    height: 45px;
    text-align:right;
}

.socials_buttons_cont {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.google_login {
    height: 45px;
    border-radius: 100px;
    outline: none;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(52, 64, 84, 1);
    font-weight: 600;
    background-color: white !important;
    color: black !important;
    text-decoration: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.apple_login {
    height: 45px;
    border-radius: 100px;
    outline: none;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    background-color: rgba(29, 29, 27, 1);
    font-weight: 600;
    color: white;
}

.whatsapp_login {
    background-color: rgba(37, 211, 102, 1);
    height: 45px;
    border-radius: 100px;
    outline: none;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.facebook_login {
    height: 45px;
    border-radius: 100px;
    outline: none;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    background-color: rgb(31, 123, 242);
    color: white;
    font-weight: 600;
    text-decoration: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.forgot_span {
    color: white;
}

@media only screen and (max-width: 768px) {
    .login_form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 85%;
        margin: auto;
        margin-top: 100px;
        margin-bottom: 150px;
    }

    .login_form_container {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }

    .forgot_span_first {
        margin-top: 20px;
        margin-bottom: 15px;
    }
}