﻿/* کانتینر فرم */
.login-row-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 30px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;

}

    /* عنوان */
    .login-container h2 {
        margin-bottom: 20px;
        font-size: 28px;
        font-weight: bold;
    }

/* گروه فرم */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

/* برچسب‌ها */
label {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

/* ورودی‌ها */
input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 14px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background 0.3s, box-shadow 0.3s;
}

/* دکمه */
.btn-login {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    background: #2575fc;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

    .btn-login:hover {
        background: #6a11cb;
    }

/* لینک‌های کمکی */
.login-container a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

    .login-container a:hover {
        text-decoration: underline;
    }
