/* استایل‌های اختصاصی صفحه فراموشی رمز (هدر/فوتر مشترک در common.css) */

.forgot-section {
    display: flex;
    justify-content: center;
    padding: 4rem 1.2rem;
}

.card3 {
    background: var(--surface);
    padding: 2.6rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-gray);
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.card3 p {
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 1.4rem;
}

#change-pass {
    display: flex;
    flex-direction: column;
}

#change-pass label {
    margin-bottom: 0.8rem;
    color: var(--navy);
    font-weight: 600;
}

#change-pass input[type="text"] {
    width: 100%;
    padding: 13px;
    border: 1.5px solid var(--border-gray);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

#change-pass input[type="text"]:focus {
    border-color: var(--accent-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.15);
}

#change-pass button {
    width: 100%;
    padding: 13px;
    background: linear-gradient(90deg, var(--navy), var(--accent-blue-dark));
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: var(--shadow-sm);
}

#change-pass button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.result {
    margin-top: 20px;
    background: var(--light);
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    word-break: break-all;
    border: 1px solid var(--border-gray);
    text-align: left;
    direction: ltr;
}

@media (max-width: 480px) {
    .card3 {
        padding: 1.8rem 1.4rem;
    }
}
