* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



body {

    min-height: 100vh;

    background-image: url("tzbg.png");

    background-size: cover;

    background-position: top center;

    background-repeat: no-repeat;

    font-family: "Open Sans", sans-serif;

    direction: rtl;

}



body::before {

        content: "";

        position: absolute;

        inset: 0;        

        background: rgba(23, 23, 32, 0.9);

        z-index: 1;

}



p {

    text-align: center;

    color: #002355;

    font-size: 20px;

    line-height: 33px;

}



/* כל האזור השמאלי */

.login-wrapper {

    position: relative;

    z-index: 2;

    height: 100vh;

    display: flex;

    align-items: center;   /* אמצע אנכי */

    justify-content: center;

}



/* הטקסט + טופס */

.content-box {
    max-width: 695px;
    background: white;
    width: 100%;
}



.login-center {

    padding: 20px 50px 35px 50px;

}



.logo-top {

    height: 75px;

    background-color: #f7f7fb;

    width: 100%;

    display: flex;

    flex-direction: row;

    align-items: center;

    justify-content: center;

}



h1 {
    font-size: 29px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.38;
    letter-spacing: -0.31px;
    text-align: center;
    color: #fa7e3a;
    margin-bottom: 10px;
}



form {

    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-top: 20px;

}



input {

    padding: 15px;

    border: none;    

    font-size: 20px;

    text-align: right;

    font-family: "Open Sans", sans-serif;

    background-color: #dedfe0;

}



button {   

    border: none;   

    cursor: pointer;

    background: #002355;

    color: white;    

    font-family: "Open Sans", sans-serif;

    max-width: 270px;

    margin: 40px auto 0;

    width: 100%;

    font-size: 20px;

    border-radius: 23px;

    line-height: 20px;

    height: 47px;

}

.second_p {
    margin-top: -7px;
}



.login-error{

    margin-bottom: 15px;

    color: #fa7e3a;

    font-size: 20px;

    font-family: "Open Sans", sans-serif;

    font-weight: 700;

    text-align: center;   

    margin-top: 20px;

}



@media (max-width: 768px) {

    body {

        background-position: 97% top;        

    }



    .login-wrapper {        

        align-items: center;

        height: 100vh;

    }



    .content-box {

        width: 95%;

    }

    .second_p {
        margin-top: 0px;
    }



    .login-center {

        padding: 20px 10px 35px 10px;

    }



    h1 {

        font-size: 20px;

        line-height: 20px;      

    }



    p {

        font-size: 15px;

        line-height: 22px;

    }



    form {

        margin-top: 25px;

    }



    input {

        font-size: 15px;

    }



    button {

        margin-top: 10px;

        font-size: 15px;

    }



}