* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



body {

    min-height: 100vh;

    background-image: url("trbg.png");

    background-size: cover;

    background-position: top center;

    background-repeat: no-repeat;

    font-family: "Rubik", sans-serif;

    direction: rtl;

}



p {
    color: #fff;
    text-align: center;
    font-family: 'Assistant', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.password-label{
    display: inline-block;
    margin-bottom: 10px;
    font-family: 'Rubik';
    font-size: 23px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 20px;
}



/* כל האזור השמאלי */

.login-wrapper {

    position: relative;

    z-index: 2;

    min-height: 100vh;

    height: 100%;

    margin-top: 20px;
    margin-bottom: 20px;

    display: flex;

    align-items: center;   /* אמצע אנכי */

    justify-content: center;

    flex-direction: column;

    row-gap: 20px;

}



/* הטקסט + טופס */

.content-box {
    border-radius: 30px;
    background: linear-gradient(270deg, rgba(12, 129, 124, 0.65) 0%, rgba(45, 206, 191, 0.65) 100%);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
    padding: 45px 60px;
    z-index: 1;
    text-align: center;
    font-family: 'Rubik', sans-serif;
    color: #074975;
    width: 100%;
    max-width: 660px;
    margin: 20px 0;
}



/**.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 {
    color: #fff;
    text-align: center;
    font-family: 'Rubik';
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 10px;
}



form {

    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-top: 20px;

}



input {
    border-radius: 41px;
    background: rgba(255, 255, 255, 0.55);
    border: none;
    padding: 12px;
    text-align: center;
    font-size: 23px;
    margin: 0 25%;
    font-family: 'Rubik'; 
}



button {   
    border-radius: 50px;
    background: #efb321;
    color: #000;
    text-align: center;
    font-family: Rubik;
    padding: 12px;
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    border-radius: 41px;
    line-height: normal;
    margin: 0 25%;
    border: none;
    margin-top: 10px;
    cursor: pointer;
}

.second_p {
    margin-top: -7px;
}



.login-error{

    margin-bottom: 15px;

    color: #000;

    font-size: 20px;

    font-family: "Rubik", sans-serif;

    font-weight: 700;

    text-align: center;   

    margin-top: 20px;

}



@media (max-width: 768px) {

    body {

        background-position: center;        

    }



    .login-wrapper {        

        align-items: center;

        height: 100vh;

        row-gap: 0px;
        margin-top: 0px;
        margin-bottom: 0px;

    }

    .logo img {
        width: 250px;
    }

    .logo-az img {
        width: 200px;
    }



    .content-box {
        padding: 15px 15px;
        width: 90%;

    }

    input, button {
        margin: 0 10%;
    }

    .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;

    }



}