.mp-page {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: calc(100vh - 96px);
    background: #F7FAFA;
    color: #193345;
    font-family: Inter, "Segoe UI", sans-serif;
}

.mp-page button,
.mp-page input,
.mp-page select {
    font-family: inherit;
}

.mp-page a {
    color: inherit;
    text-decoration: none;
}

.mp-layout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px;
}

.mp-story {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
    flex: 1 1 520px;
    max-width: 660px;
    padding: 44px;
    background: #E5F3EE;
    border-radius: 14px;
}

.mp-kicker,
.mp-story-kicker {
    margin: 0;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.45;
    color: #008D75;
}

.mp-story-title {
    margin: 0;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.45;
    color: #193345;
}

.mp-story-text {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
    color: #607987;
}

.mp-journey {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    padding: 26px;
    background: #FFFFFF;
    border-radius: 14px;
}

.mp-step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
}

.mp-step-num {
    width: 40px;
    flex: none;
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.45;
    color: #00987C;
}

.mp-step-title {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.45;
    color: #193345;
}

.mp-step p {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
    color: #607987;
}

.mp-story-note {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
    color: #476F63;
}

.mp-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 440px;
    flex: none;
}

.mp-title {
    margin: 0;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.45;
    color: #193345;
}

.mp-subtitle {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
    color: #657D89;
}

.mp-mobile-copy {
    display: none;
}

.mp-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.mp-field,
.mp-field-row {
    width: 100%;
}

.mp-field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.mp-field-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.mp-field-row .mp-field {
    flex: 1;
    min-width: 0;
}

.mp-field label {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    color: #193345;
}

.mp-control,
.mp-input {
    width: 100%;
    height: 52px;
    padding: 15px;
    background: #FFFFFF;
    border: 1px solid #CBD8DE;
    border-radius: 8px;
    color: #193345;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    outline: none;
}

.mp-control {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 0 15px;
    background: #FFFFFF;
}

.mp-control .mp-input {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    height: 50px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.mp-input:-webkit-autofill,
.mp-input:-webkit-autofill:hover,
.mp-input:-webkit-autofill:focus,
.mp-input:-webkit-autofill:active {
    -webkit-text-fill-color: #193345;
    caret-color: #193345;
    -webkit-box-shadow: 0 0 0 1000px #FFFFFF inset !important;
    box-shadow: 0 0 0 1000px #FFFFFF inset !important;
    transition: background-color 99999s ease-out;
}

.mp-input::placeholder {
    color: #71838D;
}

.mp-input:focus,
.mp-control:focus-within,
.mp-dropdown.is-open .mp-dropdown-btn,
.mp-dropdown-btn:focus {
    border-color: #008D75;
}

.mp-show {
    flex: none;
    padding: 0;
    border: 0;
    background: transparent;
    color: #71838D;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    cursor: pointer;
}

.mp-dropdown {
    position: relative;
    width: 100%;
}

.mp-dropdown select {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.mp-dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    height: 52px;
    padding: 0 15px;
    background: #FFFFFF;
    border: 1px solid #CBD8DE;
    border-radius: 8px;
    color: #71838D;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    text-align: left;
    cursor: pointer;
}

.mp-dropdown-btn svg {
    flex: none;
    color: #71838D;
    transition: transform 0.15s ease;
}

.mp-dropdown.is-open .mp-dropdown-btn svg {
    transform: rotate(180deg);
}

.mp-dropdown-value:not(.is-placeholder) {
    color: #193345;
}

.mp-dropdown-list {
    position: absolute;
    z-index: 20;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    margin: 0;
    padding: 6px;
    list-style: none;
    background: #FFFFFF;
    border: 1px solid #D8E2E6;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(25, 51, 69, 0.08);
}

.mp-dropdown-list button {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #193345;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    text-align: left;
    cursor: pointer;
}

.mp-dropdown-list button span:last-child {
    color: #607987;
    font-weight: 400;
    font-size: 13px;
}

.mp-dropdown-list button:hover,
.mp-dropdown-list button:focus {
    background: #E5F3EE;
    outline: none;
}

.mp-dropdown-list button[aria-selected="true"] {
    background: #E5F3EE;
    color: #008D75;
}

.mp-hint,
.mp-error,
.mp-alert {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
}

.mp-hint {
    color: #607987;
}

.mp-error,
.mp-alert {
    display: none;
    color: #B42318;
}

.mp-error.is-visible,
.mp-alert.is-visible {
    display: block;
}

.mp-alert.is-visible {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    color: #B42318;
    background: #FEF3F2;
    border: 1px solid #FECDCA;
}

.mp-alert.is-visible.is-success {
    color: #066B52;
    background: #E5F3EE;
    border: 1px solid #B7E0D4;
}

.mp-forgot {
    width: 100%;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    text-align: right;
}

.mp-forgot a {
    color: #008D75;
}

.mp-forgot a:hover {
    color: #006B59;
}

.mp-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    padding: 15px;
    border: 1px solid #008D75;
    border-radius: 8px;
    background: #008D75;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
    cursor: pointer;
}

.mp-submit:hover {
    background: #007A66;
    border-color: #007A66;
}

.mp-submit:disabled {
    cursor: progress;
    opacity: 0.75;
}

.mp-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin: 0;
    color: #83949C;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
    text-align: center;
    white-space: nowrap;
}

.mp-divider::before,
.mp-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #D8E2E6;
}

.mp-socials {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.mp-social {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
    height: 52px;
    padding: 15px;
    background: #FFFFFF;
    border: 1px solid #D8E2E6;
    border-radius: 8px;
    color: #193345;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.mp-social img {
    width: 20px;
    height: 20px;
    flex: none;
}

.mp-social:hover {
    border-color: #B7C6CC;
}

.mp-social-long {
    display: none;
}

.mp-switch,
.mp-pro {
    width: 100%;
    margin: 0;
    text-align: center;
}

.mp-switch {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    color: #193345;
}

.mp-switch a {
    font-weight: 600;
}

.mp-switch a:hover,
.mp-pro:hover {
    color: #006B59;
}

.mp-pro {
    display: block;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
    color: #008D75;
}

.mp-terms {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
    color: #657D89;
}

.mp-terms a {
    color: #008D75;
    font-weight: 600;
}

.mp-footer {
    width: 100%;
    padding: 32px;
}

.mp-footer p {
    max-width: 1376px;
    margin: 0 auto;
    color: #6B808A;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
    text-align: center;
}

.mp-footer a {
    color: #6B808A;
}

.mp-footer a:hover {
    color: #193345;
}

.mp-footer-sep {
    margin: 0 10px;
}

@media (max-width: 1180px) {
    .mp-layout {
        gap: 40px;
        padding: 40px 32px;
    }
}

@media (max-width: 960px) {
    .mp-page {
        background: #FFFFFF;
    }

    .mp-story,
    .mp-kicker,
    .mp-desktop-copy,
    .mp-social-short,
    .mp-footer-copy {
        display: none;
    }

    .mp-mobile-copy,
    .mp-social-long {
        display: inline;
    }

    .mp-layout {
        flex-direction: column;
        gap: 22px;
        padding: 22px 24px 0;
    }

    .mp-panel,
    .mp-form {
        width: 100%;
        gap: 22px;
    }

    .mp-title {
        font-size: 26px;
    }

    .mp-subtitle {
        font-size: 14px;
    }

    .mp-field-row {
        flex-direction: column;
        gap: 22px;
    }

    .mp-socials {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .mp-social {
        width: 100%;
    }

    .mp-switch {
        font-size: 13px;
    }

    .mp-pro {
        text-align: center;
    }

    .mp-footer {
        padding: 8px 24px 32px;
    }

    .mp-footer p {
        max-width: none;
        color: #71838D;
        font-size: 11px;
        text-align: center;
    }

    .mp-footer a {
        color: #71838D;
    }
}
