body {
    font-family: 'Tajawal', sans-serif;
    background: url('img/background.png');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    position: relative;
    overflow: hidden;
}
body::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(31, 73, 125, 0.5);
    backdrop-filter: blur(10px);
    z-index: 0;
}
.background-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background: url('img/abstract-waves.png');
    background-size: cover;
    opacity: 0.15;
    animation: moveWaves 15s linear infinite alternate;
}
@keyframes moveWaves {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}
.legal-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.login-container {
    z-index: 9;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    max-width: 400px;
}
.input-group {
    position: relative;
    margin-bottom: 15px;
}
.input-group input {
    width: 90%;
    padding: 12px;
    padding-right: 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    text-align: right;
}
.input-group .icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #666;
}
.options {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 15px;
}
.options a {
    text-decoration: none;
    color: #1f497d;
}
button {
    width: 100%;
    background: #1f497d;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}
button:hover {
    background: #163b5b;
}
.return-home {
    margin-top: 15px;
}
.return-home a {
    text-decoration: none;
    color: #1f497d;
    font-weight: bold;
}