body, html {
    height: 100%;
    font-family: "Vazirmatn", sans-serif;
    margin: 0;
    padding: 0;
}

/* تصویر پس‌زمینه */
.image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* متن خوش آمدید بیرون از کادر */
.welcome-text {
    position: absolute;
    top: 50px; /* فاصله از بالای صفحه */
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
    z-index: 2;
}

/* کادر ورود */
.login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(۲۰۰, ۲۰۳, ۲۰۶, 0.9); /* پس زمینه تیره */
    border: 1px solid #e5e2e2;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    padding: 30px;
    width: 300px;
    max-width: 90%;
    text-align: center;
    color: #e0dfdf;
}

.form-group {
    margin-top: 20px;
}

label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    background-color: #2865a4;
    color: white;
}

.password-wrapper {
    position: relative;
}

.eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #0c1665;
    font-size: 20px;
}

button {
    width: 100%;
    padding: 10px;
    margin-top: 45px;
    border-radius: 5px;
    border: none;
    background-color: #051150;
    border: 1px solid #e5e2e2;
    color: white;
    font-size: 18px;
    cursor: pointer;
    font-family: "Vazirmatn", sans-serif;
}

button:hover {
    background-color: #064cb6;
}

.messages {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    font-size: 13px;
    color: #fdf8f8;
}
