.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* تصویر کل صفحه رو بدون کشیدگی پر می‌کنه */
}

.Login-Form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10; /* اضافه کن */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 320px;
    max-width: 90%;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    color: white;
    transition: all 0.3s ease;
}

.Login-Form:hover {
    transform: translate(-50%, -50%) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.titr{
    text-align: center;
}

/* همه input و select یکسان */
.Login-Form input,
.Login-Form select {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: rgba(255,255,255,0.9);
    color: #000;
}

/* دکمه */
.Login-Form button {
    margin-top: 15px;
    margin-bottom: 15px;
    width: 100%;
    padding: 10px;
    border: 0;
    border-radius: 6px;
    background: #2b8aef;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}


/* پیام خطا */
.err {
    color: #b00020;
    margin-bottom: 10px;
}
