.mc-form {
    display: flex;
    gap: 20px;
    max-width: 900px;
    align-items: center;
    width: 100%;
}

.mc-form input {
    flex: 1;
    height: 45px;
    min-height: 45px;
    padding: 0 20px;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    color: #2D5E7F;
    font-size: 16px;
    font-family: "Source Sans Pro", sans-serif;
    box-sizing: border-box;

    -webkit-appearance: none;
    appearance: none;
    line-height: 45px;
}

.mc-form button {
    width: 125px;
    padding: 10px;
    border: none;
    background: #4d6484;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    font-family: "Source Sans Pro", sans-serif;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.mc-form button:hover {
    background: #3f5572;
}

.mc-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#mc-message {
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
}

.mc-success {
    color: #1e8e3e;
}

.mc-error {
    color: #d93025;
}

/*
|--------------------------------------------------------------------------
| MOBILE
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {

    .mc-form {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .mc-form input,
    .mc-form button {
        width: 100%;
    }

    .mc-form button {
        height: 45px;
    }
}