
body {
    font-family: 'Cairo', sans-serif;
    background: url('/images/backgroundlogin.jpeg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #003366;
    font-size: 0.85rem;
    overflow-x: hidden;
}

    body::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(4px);
        z-index: 0;
    }

.login-box {
    position: relative;
    z-index: 1;
}


.login-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 14px;
    border-top: 4px solid #cc8800;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 540px;
}

    .login-box img {
        width: 150px;
        margin-bottom: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #003366;
    margin-bottom: 4px;
}

.form-control {
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 0.8rem;
    color: #444;
}

    .form-control::placeholder {
        color: #999;
    }

.login-btn {
    background: linear-gradient(to right, #dda528, #e6b442);
    color: white;
    font-weight: bold;
    border-radius: 8px;
    padding: 8px;
    width: 100%;
    font-size: 0.9rem;
}

    .login-btn:hover {
        background-color: #c6921b;
    }

.forgot-link {
    color: #cc8800;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
}


footer {
    font-size: 0.7rem;
    color: #666;
}
