/* فایل: css/account-info.css */

#account-info-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    background-color: transparent;
    color: #ffffff;
}

#account-info-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    text-align: right;
}

#account-info-form input[type="text"],
#account-info-form input[type="email"],
#account-info-form input[type="password"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    box-sizing: border-box;
    border: 1px solid #cccccc;
    border-radius: 5px;
    background-color: #333333;
    color: #ffffff;
}

#account-info-form fieldset {
    border: 1px solid #cccccc;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
}

#account-info-form legend {
    font-weight: bold;
    padding: 0 5px;
}

#account-info-form input[type="submit"] {
    background-color: #ff4d4d;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#account-info-form input[type="submit"]:hover {
    background-color: #e60000;
}

/* استایل‌های ریسپانسیو */
@media (max-width: 768px) {
    #account-info-form {
        padding: 15px;
    }
}
