.msq-form-wrap {
    max-width: 700px;
    margin: 0 auto;
    padding: 0;
}

.msq-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.msq-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.msq-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.msq-field label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a1a2e;
}

.msq-field .required {
    color: #c0392b;
}

.msq-field input,
.msq-field select,
.msq-field textarea {
    padding: 0.7rem 0.9rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
    background: #fff;
}

.msq-field input:focus,
.msq-field select:focus,
.msq-field textarea:focus {
    outline: none;
    border-color: #e67e22;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.15);
}

.msq-submit {
    background: #e67e22;
    color: #fff;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
}

.msq-submit:hover {
    background: #d35400;
}

.msq-success {
    background: #d4edda;
    border: 2px solid #28a745;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    max-width: 700px;
    margin: 2rem auto;
}

.msq-success h3 {
    color: #155724;
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.msq-success p {
    color: #155724;
    margin: 0.3rem 0;
}

@media (max-width: 600px) {
    .msq-row {
        grid-template-columns: 1fr;
    }
}
