.mfc-form-wrap {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 740px;
    margin: 0 auto;
    font-family: "Space Grotesk", sans-serif;
    color: #e0e0e0;

}

.mfc-title {
    color: #0C256F;
    font-size: 30px;
    font-weight: 500;
    margin: 0 0 12px;
    border-bottom: 2px solid #0C256F;
    display: inline-block;
    padding-bottom: 2px;
}

.mfc-desc {
    font-size: 17px;
    color: #0C256F;
    margin: 0 0 22px;
    line-height: 1.6;
    font-family: Inter, sans-serif;
    font-weight: 400;
}

.mfc-field {
    margin-bottom: 18px;
}

.mfc-field label {
    display: block;
    font-size: 14px;
    color: #0C256F;
    margin-bottom: 6px;
    font-family: Inter, sans-serif;
    font-weight: 700;
}

.mfc-field input {
    width: 100%;
    background: #F4F7FC;
    border: 1px solid #2a2a45;
    border-radius: 10px;
    padding: 10px 14px;
    color: #ffffff;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color .2s;
}

.mfc-field input:focus {
    outline: none;
    border-color: #4a4a88;
}

.mfc-btn {
    background: #0C256F;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 36px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 6px;
    transition: background .2s;
}

.mfc-btn:hover {
    background: #0C256F;
    color: #fff;
}

.mfc-msg {
    margin-bottom: 14px;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 5px;
    display: none;
}

.mfc-msg.success {
    background: #1a3a1a;
    color: #66cc66;
    display: block;
}

.mfc-msg.error {
    background: #3a1a1a;
    color: #cc6666;
    display: block;
}