.mrf-container-60e8aadf {
    font-family: inherit;
    width: 100%;
    max-width: 800px;
}

.mrf-form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.mrf-form-row {
    display: flex;
    gap: 20px;
}

.mrf-half {
    flex: 1;
}

.mrf-form-label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.mrf-form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    background-color: #fff;
    color: #333;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

select.mrf-form-input {
    height: 48px;
    padding: 10px 15px;
    cursor: pointer;
    line-height: normal;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Ctitle%3Edown-arrow%3C%2Ftitle%3E%3Cg%20fill%3D%22%23333333%22%3E%3Cpath%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M10.293%2C3.293L6%2C7.586L1.707%2C3.293A1%2C1%2C0%2C0%2C0%2C0.293%2C4.707l5%2C5a1%2C1%2C0%2C0%2C0%2C1.414%2C0l5-5a1%2C1%2C0%2C1%2C0-1.414-1.414Z%22%20fill%3D%22%23333333%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

input[type="date"].mrf-form-input {
    height: 48px;
    line-height: normal;
}

.mrf-form-input:focus {
    outline: none;
    border-color: #3f6d7a;
}

/* Button styles removed to rely purely on Elementor controls */
.mrf-form-submit {
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    /* Basic default fallback layout only */
    border: none;
    display: inline-block;
    text-align: center;
}

.mrf-form-message {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
}

.mrf-msg-success {
    color: #2e7d32;
}

.mrf-msg-error {
    color: #c62828;
}

@media (max-width: 767px) {
    .mrf-form-row {
        flex-direction: column;
        gap: 0;
    }
}
