body {
    font-family: 'Tajawal', sans-serif;
    background: linear-gradient(to right, #e6f0ff, #cce0ff);
    margin: 0;
    padding: 0;
    direction: rtl;
}

.container {
    max-width: 700px;
    margin: 50px auto;
    padding: 0 15px;
}

.form-box {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.form-title {
    font-size: 28px;
    font-weight: bold;
    color: #1a3d7c;
    margin-bottom: 10px;
    text-align: center;
}

.form-desc {
    font-size: 14px;
    color: #333;
    text-align: center;
    margin-bottom: 25px;
}

.input-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ccc;
    background: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.input-group:hover {
    border-color: #1a3d7c;
}

.input-icon {
    background: #1a3d7c;
    color: #fff;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-group input,
.input-group select {
    border: none;
    outline: none;
    padding: 12px;
    flex: 1;
    background: transparent;
    font-size: 14px;
    color: #333;
}

.input-group input::placeholder {
    color: #666;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background: #1a3d7c;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1452a0;
}

.popup-message {
    position: fixed;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.5);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index: 9999;
}

.popup-content {
    background: rgba(255,255,255,0.95);
    padding:30px;
    border-radius:20px;
    text-align:center;
    max-width:400px;
    box-shadow:0 8px 25px rgba(0,0,0,0.3);
}

.popup-content h3 {
    margin:15px 0;
    color:#1a3d7c;
}

.popup-content p {
    color:#555;
    margin-bottom:20px;
}

header {
    width: 100%;
    background: #1a3d7c;
    color: #fff;
    padding: 15px 0;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 999;
}

footer {
    width: 100%;
    background: #1a3d7c;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 50px;
    font-size: 14px;
}

.form-check-label {
    font-size: 14px;
    color: #333;
}
