/* Banner */
.banner img {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover;
}

header {
    height: fit-content;
    padding: 3px 120px;
    min-height: 46px;
    background: var(--secondary);
}

header .logo {
    color: var(--primary);
    font-weight: 700;
    font-size: 30px;
    margin-right: 1rem;

    font-family: "Arimo Hebrew Subset Italic", sans-serif;
    font-style: italic;
    line-height: normal;
    text-decoration: none;
}

/* Main section Login */
main {
    flex: 1;
    display: flex;
    justify-content: center;   /* center horizontally */
    align-items: center;       /* center vertically */
    padding: 40px 20px;
}


/* Login-Box */
.login-box {
    background-color: white;
    padding: 40px;
    border: 1px solid #999;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 350px;
    font-family: 'Inter', sans-serif;
}

.login-box form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-box label {
    font-weight: bold;
    font-size: 0.95em;
    margin-bottom: 5px;
}

.login-box input {
    padding: 10px;
    border: 1px solid #aaa;
    border-radius: 4px;
    font-size: 1em;
}
.login-box input:focus {
    border-color: var(--primary);
    outline: none;
}

/* Login Button */
.login-box button {
    margin-top: 10px;
    padding: 12px;
    background-color: #141A2C;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s ease;
}

.login-box button:hover {
    background-color: #1f2c59;
    transform: translateY(-2px);
}

/* Set footer correctly */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

footer {
    margin-top: auto;
}
