
body {
    background: url('../images/d.png') no-repeat center center fixed; /* آدرس تصویر پس‌زمینه را جایگزین کنید */
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Arial', sans-serif;
    direction: rtl;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* تیره‌تر کردن پس‌زمینه */
}
.login-container {
    max-width: 400px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1;
}
.login-container h2 {
    margin-bottom: 30px;
    font-weight: 700;
    color: #0072ff;
    text-align: center;
}
.form-group label {
    font-weight: 600;
    color: #555;
}
.form-control {
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.btn-primary {
    background-color: #0056b3; /* آبی تیره */
    border: none;
    border-radius: 10px;
    padding-top: 10px;
    padding: 8px 30px;
}
.btn-primary:hover {
    background-color: #004494; /* رنگ هاور دکمه */
}
.footer-link {
    text-align: center;
    margin-top: 25px;
    color: #555;
}
.footer-link a {
    color: #0072ff; /* آبی */
    text-decoration: none;
}
.footer-link a:hover {
    text-decoration: underline;
    
}
