body {
    font-family: Tahoma, Arial, sans-serif;
    background: #f7f7f7;
    direction: rtl;
}
.container {
    max-width: 400px;
    margin: 40px auto;
    background: #fff;
    padding: 24px 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
h2 {
    text-align: center;
    color: #333;
}
label {
    display: block;
    margin-top: 16px;
    color: #444;
}
input, select {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
}
button {
    width: 100%;
    margin-top: 20px;
    padding: 10px;
    background: #1e88e5;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}
button:hover {
    background: #1565c0;
}
.message {
    background: #e0f7fa;
    color: #00796b;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 16px;
    text-align: center;
    font-weight: bold;
} 