body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;

    /* BACKGROUND FIX */
    background-image: url('images/background.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;   /* במקום cover - מבטל זום */
    background-color: #0c2d48;  /* צבע מילוי מסביב */
    background-attachment: fixed;
}

/* DARK OVERLAY */
.overlay {
    background: rgba(0,0,0,0.65);
    min-height: 100vh;
    padding: 40px;
}

/* LOGO */
.logo {
    width: 180px;
    height: auto;
    display: block;
}

/* TEXT AREA */
.content {
    max-width: 700px;
    margin-top: 40px;
}

h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

/* FORM BOX */
.form-section {
    margin-top: 50px;
    background: white;
    color: black;
    padding: 30px;
    max-width: 400px;
    border-radius: 10px;
}

/* INPUTS */
input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
}

/* BUTTON */
button {
    width: 100%;
    padding: 14px;
    background: #0c2d48;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #145da0;
}

/* MOBILE FIX */
@media (max-width: 768px) {

    body {
        background-size: cover; /* במובייל כן ממלא מסך */
        background-attachment: scroll;
    }

    .overlay {
        padding: 20px;
    }

    h1 {
        font-size: 30px;
    }

    .form-section {
        max-width: 100%;
    }
}