.mcs-form {
    max-width: 480px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    font-family: system-ui, sans-serif;
}

.mcs-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #222;
}

.mcs-form input,
.mcs-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.mcs-form textarea {
    min-height: 120px;
    resize: vertical;
}

.mcs-form input:focus,
.mcs-form textarea:focus {
    outline: none;
    border-color: #4f46e5;
}

.mcs-form button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.mcs-form button:hover {
    opacity: 0.9;
}

.mcs-success {
    max-width: 480px;
    margin: 20px auto;
    padding: 15px;
    background: #ecfdf5;
    color: #065f46;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}
