#msf-form-container {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
}

.msf-field {
    margin-bottom: 15px;
}

.msf-field label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.msf-field input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.msf-submit button {
    background: #2b307a !important;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 33px;
    cursor: pointer;
    font-size: 17px;
    line-height: 1;
    font-weight: 500;
}

.msf-submit button:hover {
    background: #005177;
}

.msf-submit button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#msf-response-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

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

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