/* استایل‌های فرم ثبت نام */
.wsm-registration-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.wsm-registration-form h2 {
    text-align: center;
    color: #007cba;
    margin-bottom: 30px;
    border-bottom: 2px solid #007cba;
    padding-bottom: 10px;
}

.wsm-registration-form .form-group {
    margin-bottom: 20px;
}

.wsm-registration-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.wsm-registration-form input,
.wsm-registration-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.wsm-registration-form input:focus,
.wsm-registration-form select:focus {
    border-color: #007cba;
    outline: none;
    box-shadow: 0 0 5px rgba(0,124,186,0.3);
}

.wsm-registration-form small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

.expert-fields {
    background: #e7f3ff;
    padding: 15px;
    border-radius: 6px;
    border-right: 4px solid #007cba;
    margin-top: 20px;
}

.expert-fields h3 {
    margin-top: 0;
    color: #005a87;
    font-size: 16px;
}

.expert-fields label {
    color: #005a87;
}

.login-link {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.login-link a {
    color: #007cba;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

#registration-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
}

#registration-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#registration-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .wsm-registration-form {
        margin: 10px;
        padding: 15px;
    }
}