.mcf-wrapper {
    font-family: 'Roboto', sans-serif;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.mcf-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.mcf-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.mcf-label {
    font-weight: 500;
    color: #222;
    font-size: 0.95rem;
}
.mcf-req {
    color: #e53e3e;
}
.mcf-input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #d1d9c8;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    background: #fafafa;
}
.mcf-input:focus {
    background: #fff;
    border-color: #334B1C;
    outline: none;
    box-shadow: 0 0 0 1px #334B1C;
}
.mcf-textarea {
    resize: vertical;
    min-height: 120px;
}
.mcf-btn {
    background-color: #334B1C;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    font-family: inherit;
    margin-top: 0.5rem;
    width: 100%;
}
.mcf-btn:hover {
    background-color: #233513;
    transform: translateY(-1px);
}
.mcf-btn:active {
    transform: translateY(1px);
}
.mcf-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}
.mcf-response {
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
}
.mcf-response.success {
    background-color: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}
.mcf-response.error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
