/* فرم همکاری همکار */
#wholesale-form {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: "Tahoma", sans-serif;
}

#wholesale-form p {
    margin-bottom: 15px;
}

#wholesale-form input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s;
}

#wholesale-form input:focus {
    border-color: #0073aa;
    outline: none;
}

#wholesale-form button {
    background-color: #0073aa;
    color: #fff;
    font-weight: bold;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

#wholesale-form button:hover {
    background-color: #005177;
}

#wholesale-response {
    margin-top: 15px;
    font-size: 14px;
    padding: 10px;
    border-radius: 8px;
}

#wholesale-response p {
    margin: 0;
}

