body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.image-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(31, 80, 134, 0.9);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 250px;
    max-width: 90%;
    text-align: center;
    color: #e0dfdf;
}

.form-group {
    margin-top: 25px;
}

label {
    display: block;
    margin-top: 20px;
    color: #e3e1e1;
    text-align: left;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 5px 40px 5px 5px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 40px;
    font-size: 16px;
    color: #e0dddd;
    background-color: #2865a4;


}

.password-wrapper {
    position: relative;
}

.eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #0c1665;
    font-size: 20px;
    z-index: 2;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #051150;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    margin-top: 50px;
    font-family: "Vazirmatn", sans-serif;
}

button:hover {
    background-color: #064cb6;
}

.messages {
    list-style-type: none;
    padding: 0;
    color: #fdf8f8;
    margin-top: 10px;
    font-size: 13px;
}
