/* تنظیمات پایه مشابه صفحه لاگین */
.auth-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #000000 0%, #00589c 100%);
    padding: 15px;
    direction: rtl;
}

.forgot-container {
    width: 100%;
    max-width: 350px; /* عرض ثابت و استاندارد */
    background: #383434;
    border: 15px double #1C6EA4; /* مشابه استایل قبلی‌ات */
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.box {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.auth-logo {
    max-width: 100%;
    height: auto;
}

.tit-pas {
    font-size: 22px;
    color: #0abeff !important;
    margin-bottom: 10px;
    font-weight: bold;
}

.desc-text {
    font-size: 12px;
    color: #9b9b9b;
    margin-bottom: 20px;
}

.auth-form {
    width: 100%;
    display: flex;
    flex-direction: column;

}

.input-field {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #28aeff;
    border-radius: 5px;
    box-sizing: border-box; /* جلوگیری از بیرون زدن عرض */
}

/* دکمه با تم نئونی واش‌پل */
.sub-btn {
    width: 100%;
    padding: 12px;
    background-color: #0abeff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 2px 2px 2px #000, inset 4px 4px 15px rgba(0,0,0,0.5);
    text-shadow: 0 0 10px #fff, 0 0 20px #49FF18;
    transition: 0.3s;
}

.sub-btn:hover {
    filter: brightness(1.2);
}

.back-link {
    margin-top: 20px;
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}

.back-link:hover {
    text-decoration: underline;
}

/* موبایل کوچک */
@media (max-width: 360px) {
    .forgot-container {
        max-width: 300px;
        border-width: 8px;
    }
}
