html,
body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.vv-wrap {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
}

.vv-container {
    max-width: 760px;
}

.vv-card {
    border-radius: 1rem;
}

.vv-page-header {
    background: #f8f9fa;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.vv-page-header__inner {
    background: #f8f9fa;
    border: none;
    border-radius: 0;
    box-shadow: none;
    min-height: 86px;
}

.vv-header-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 auto;
    min-width: 0;
}

.vv-header-logo {
    width: 186px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.vv-header-tagline {
    margin-top: 5px;
    color: #6c757d;
    font-size: 7px;
    font-weight: 300;
    line-height: 1.2;
}

.vv-header-contacts {
    margin-left: auto;
}

.vv-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #000;
    text-decoration: none;
}

.vv-contact-link:hover,
.vv-contact-link:focus {
    color: #000;
    text-decoration: none;
}

.vv-contact-icon {
    color: #000;
    line-height: 0;
}

.vv-support-btn {
    align-self: center;
    flex-shrink: 0;
    border-width: 1px;
    color: #198754;
    border-color: #198754;
    background: transparent;
    text-decoration: none;
}

.vv-support-btn:hover,
.vv-support-btn:focus {
    color: #198754;
    border-color: #198754;
    background: rgba(25, 135, 84, 0.08);
}

.vv-page-footer {
    background: #f8f9fa;
    border: none;
    box-shadow: none;
}

.vv-step {
    display: none;
}

.vv-step.vv-step--active {
    display: block;
    animation: vvFadeIn 0.25s ease;
}

.vv-summary {
    border: 1px solid #dee2e6;
    border-radius: 0.75rem;
    padding: 1rem;
    background: #fff;
}

.vv-summary h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1rem;
}

.vv-summary h3:first-child {
    margin-top: 0;
}

.vv-summary dl {
    margin-bottom: 0;
}

.vv-summary dt {
    font-weight: 600;
}

.vv-summary dd {
    margin-bottom: 0.5rem;
}

.vv-ok-section {
    margin: 0 0 1rem 0;
}

.vv-ok-section h3 {
    margin-top: 0;
}

.vv-ok-section p {
    line-height: 1.55;
}

.vv-ok-section ul,
.vv-ok-section ol {
    margin: 0;
    padding-left: 1.25rem;
}

.vv-ok-section li + li {
    margin-top: 0.25rem;
}

.vv-mockup {
    max-height: 280px;
    object-fit: contain;
}

.vv-wrap .form-control:focus,
.vv-wrap .form-select:focus,
.vv-wrap .form-check-input:focus,
.vv-wrap .btn:focus-visible {
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.2);
}

.vv-wrap .btn:disabled {
    cursor: not-allowed;
}

#phonePrefix,
#accountPrefix {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#phoneInput,
#accountTailInput {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.vv-check-icon {
    width: auto;
    height: 120px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: vvOkAppear 0.45s ease-out;
}

.vv-check-icon svg {
    width: auto;
    height: 120px;
    display: block;
}

.vv-relative {
    position: relative;
}

.vv-suggest-menu {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    right: 0;
    z-index: 20;
    max-height: 220px;
    overflow-y: auto;
}

.vv-suggest-menu .list-group-item {
    cursor: pointer;
}

.vv-conditional {
    border: 1px dashed #dee2e6;
    border-radius: 0.75rem;
    padding: 0.75rem;
    margin-bottom: 1rem;
    background-color: #fcfcfc;
}

@keyframes vvFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes vvOkAppear {
    from {
        transform: scale(0.92);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 575.98px) {
    .vv-nav .btn {
        flex: 1;
    }

    .vv-page-header__inner {
        min-height: 86px;
    }

    .vv-support-btn {
        width: auto;
        margin-left: 0.5rem;
    }
}

@media (min-width: 768px) {
    .vv-page-header__inner {
        min-height: 86px;
        max-height: 86px;
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
}
