* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background-image: url("fnbg.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: #030303;
    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: 595px;
    background: white;   
}

.login-center {
    padding: 20px 65px 65px 65px;
}

.logo-top {
    height: 85px;
    background-color: #f7f7fb;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 36px;
    line-height: 65px;
    text-align: center;
    color: #ad2473;    
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
}

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: #ad2473;
    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;
}

.login-error{
    margin-bottom: 15px;
    color: #000;
    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%;
    }

    .login-center {
        padding: 20px 35px 35px 35px;
    }

    h1 {
        font-size: 20px;
        line-height: 50px;      
    }

    p {
        font-size: 15px;
        line-height: 20px;
    }

    form {
        margin-top: 30px;
    }

    input {
        font-size: 15px;
    }

    button {
        margin-top: 30px;
        font-size: 15px;
    }

}