﻿.pfw-box {
    background-color: #e9f9e9;
    border: 2px solid #2e7d32;
    border-radius: 10px;
    padding: 25px;
    margin: 30px auto;
    text-align: center;
    font-family: "Vazir", sans-serif;
    direction: rtl;
    max-width: 550px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

    .pfw-box h2 {
        color: #2e7d32;
        margin-bottom: 15px;
        font-size: 22px;
    }

    .pfw-box p {
        font-size: 15px;
        color: #333;
        margin-bottom: 20px;
        line-height: 1.8;
    }

.pfw-form input,
.pfw-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
}

.pfw-form button {
    background-color: #2e7d32;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

    .pfw-form button:hover {
        background-color: #1b5e20;
    }

.pfw-msg {
    margin-top: 12px;
    padding: 10px;
    border-radius: 8px;
    display: none;
    font-size: 14px;
}

.pfw-success {
    background: #d4edda;
    color: #155724;
}

.pfw-error {
    background: #f8d7da;
    color: #721c24;
}

@media (max-width: 768px) {
    .pfw-box {
        padding: 20px;
        font-size: 14px;
    }

    .pfw-form input,
    .pfw-form textarea {
        font-size: 14px;
        padding: 10px;
    }

    .pfw-form button {
        font-size: 14px;
        padding: 10px 16px;
    }
}