* {
    box-sizing: border-box;
}

body {

    margin: 0;

    min-height: 100vh;

    font-family: Arial, sans-serif;

    background: linear-gradient(
        -45deg,
        #eff6ff,
        #f5f3ff,
        #fdf2f8,
        #fff7ed
    );

    background-size: 400% 400%;

    animation: animatedBg 18s ease infinite;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    color: #111827;

}

body.auth-modal-open {
    animation-play-state: paused;
}

.report-ready-toast {
    position: fixed;
    top: 18px;
    left: 50%;
    z-index: 120;
    display: flex;
    align-items: center;
    gap: 14px;
    width: min(520px, calc(100vw - 28px));
    padding: 14px 16px;
    border: 1px solid rgba(91, 78, 232, .22);
    border-radius: 18px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 20px 48px rgba(30, 24, 80, .18);
    transform: translate(-50%, -130%);
    opacity: 0;
    pointer-events: none;
    transition: transform .24s ease, opacity .24s ease;
}

.report-ready-toast.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
}

.report-ready-title {
    color: #17152f;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
}

.report-ready-text {
    margin-top: 3px;
    color: #6b6a8a;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.report-ready-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    margin-left: auto;
    padding: 0 16px;
    border-radius: 999px;
    background: #5b4ee8;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.report-ready-close {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border: 1px solid #e2def8;
    border-radius: 50%;
    background: #fff;
    color: #6b6a8a;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.public-header {
    position: fixed;
    top: 16px;
    left: 24px;
    right: 24px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

@media (max-width: 640px) {
    .report-ready-toast {
        top: 12px;
        align-items: flex-start;
        gap: 10px;
        padding: 12px;
        border-radius: 16px;
    }

    .report-ready-link {
        min-height: 34px;
        padding: 0 12px;
        font-size: 12px;
    }
}

.public-header > * {
    position: relative;
    z-index: 2;
}

.public-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #5b4ee8;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-decoration: none;
}

.public-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 76px;
    height: 30px;
    border-radius: 9px;
    background: #5b4ee8;
    color: #fff;
    padding: 0 13px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .04em;
}

.public-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid #d8d4ff;
    border-radius: 12px;
    background: rgba(255,255,255,.92);
    color: #5b4ee8;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 10px 26px rgba(15,23,42,.08);
}

.public-menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    display: block;
}

.public-backdrop {
    display: none;
}

.public-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 0 18px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.public-nav a {
    color: #1a1730;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.public-nav a:hover {
    color: #5b4ee8;
}

.public-nav-brand,
.public-nav-actions {
    display: none;
}

.public-auth {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    min-width: 285px;
}

.auth-button {
    border: 1px solid #d8d4ff;
    border-radius: 999px;
    background: rgba(255,255,255,0.9);
    color: #3c3489;
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(15,23,42,0.08);
}

.auth-button.login {
    border-color: #5b4ee8;
    background: #5b4ee8;
    color: #fff;
}

#authGuestActions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-button.primary {
    border-color: #5b4ee8;
    background: #5b4ee8;
    color: #fff;
}

.auth-user {
    display: none;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.92);
    border: 1px solid #e5e3f5;
    border-radius: 999px;
    padding: 6px 8px 6px 14px;
    box-shadow: 0 10px 26px rgba(15,23,42,0.08);
}

.auth-user-email {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #1a1730;
    font-size: 14px;
    font-weight: 500;
}

.auth-cabinet {
    border: 1px solid #5b4ee8;
    border-radius: 999px;
    background: #5b4ee8;
    color: #fff;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(91,78,232,0.22);
}

.auth-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
    background: rgba(26,23,48,0.56);
}

.auth-modal.is-open {
    display: flex;
}

.auth-dialog {
    width: min(430px, 100%);
    background: #fff;
    border: 1px solid #e5e3f5;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 28px 90px rgba(15,23,42,0.24);
    text-align: left;
}

.auth-dialog-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.auth-eyebrow {
    color: #5b4ee8;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.auth-title {
    margin: 0;
    color: #1a1730;
    font-size: 24px;
    line-height: 1.15;
}

.auth-close {
    width: 36px;
    height: 36px;
    border: 1px solid #e5e3f5;
    border-radius: 50%;
    background: #f8f7fe;
    color: #6b6a8a;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
}

.auth-field {
    margin-bottom: 14px;
}

.google-auth-btn {
    width: 100%;
    min-height: 48px;
    border: 1px solid #e5e3f5;
    border-radius: 999px;
    background: #fff;
    color: #1a1730;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(15,23,42,.08);
}

.google-auth-btn img {
    width: 24px;
    height: 24px;
    display: block;
    flex-shrink: 0;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    color: #9a99b5;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    height: 1px;
    flex: 1;
    background: #e5e3f5;
}

.auth-field label {
    display: block;
    margin-bottom: 7px;
    color: #9a99b5;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.auth-field input {
    width: 100%;
    border: 1px solid #e5e3f5;
    border-radius: 14px;
    padding: 14px 15px;
    color: #1a1730;
    font-size: 16px;
    outline: none;
}

.auth-field input:focus {
    border-color: #5b4ee8;
    box-shadow: 0 0 0 4px rgba(91,78,232,0.12);
}

.auth-consent {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: start;
    margin: 2px 0 16px;
    color: #6b6a8a;
    font-size: 13px;
    line-height: 1.45;
}

.auth-consent input {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: #5b4ee8;
}

.auth-consent a {
    color: #4f46e5;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.auth-recaptcha {
    display: flex;
    justify-content: center;
    min-height: 78px;
    margin: 4px 0 16px;
    overflow: hidden;
    transform-origin: top center;
}

.auth-submit {
    width: 100%;
    border: 1px solid #5b4ee8;
    border-radius: 999px;
    background: #5b4ee8;
    color: #fff;
    padding: 14px 18px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
}

.auth-message {
    display: none;
    margin-bottom: 14px;
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.auth-message.error {
    display: block;
    background: #faece7;
    color: #993c1d;
    border: 1px solid #f0c9bd;
}

.auth-message.success {
    display: block;
    background: #e1f5ee;
    color: #1d9e75;
    border: 1px solid #bfe7d8;
}

.auth-switch {
    margin-top: 16px;
    text-align: center;
    color: #6b6a8a;
    font-size: 14px;
}

.auth-switch button {
    border: 0;
    background: transparent;
    color: #5b4ee8;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}
@keyframes animatedBg {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }

}

.wrapper {
    width: 100%;
    max-width: 760px;
    padding: 108px 24px 48px;
    text-align: center;
    margin: 0 auto;
}

.public-footer {
    position: static;
    width: 100%;
    z-index: 15;
    display: block;
    justify-content: center;
    padding: 0 24px 34px;
    text-align: center;
    color: #6b6a8a;
    font-size: 12px;
    line-height: 1.45;
}

.public-footer a {
    color: #4f46e5;
    font-size: 12px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.public-footer a:hover {
    color: #5b4ee8;
}

.logo {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 10px;

    background: linear-gradient(
        90deg,
        #2563eb,
        #7c3aed,
        #ec4899,
        #f97316,
        #2563eb
    );

    background-size: 300% 300%;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: gradientMove 5s ease infinite;
}

.checked-cars-count {
    margin-bottom: 28px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
}

@keyframes gradientMove {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }

}

.search-box {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 22px;
    padding: 8px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    border: 1px solid #e5e7eb;
}

.search-box input {

    flex: 1;

    border: none;
    outline: none;

    padding: 20px 22px;

    font-size: 20px;

    border-radius: 18px;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: #111827;
}

.search-box input::placeholder {

    color: #94a3b8;

    text-transform: none;

    letter-spacing: 0;
}

.search-box button {

    border: none;

    cursor: pointer;

    padding: 20px 30px;

    border-radius: 18px;

    font-size: 18px;

    font-weight: 700;

    color: #fff;

    background: linear-gradient(
        135deg,
        #2563eb,
        #7c3aed
    );

    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.28);

    transition: 0.2s ease;

    white-space: nowrap;
}

.search-box button:hover {

    transform: translateY(-1px);

    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.35);
}

.search-mode-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 12px;
}

.plate-search-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
}

.plate-search-toggle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.toggle-switch {
    width: 42px;
    height: 24px;
    border-radius: 999px;
    background: #dbe3f0;
    border: 1px solid #cbd5e1;
    position: relative;
    transition: 0.2s ease;
}

.toggle-switch::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #ffffff;
    left: 2px;
    top: 2px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.2);
    transition: 0.2s ease;
}

.plate-search-toggle input:checked + .toggle-switch {
    background: #5b4ee8;
    border-color: #5b4ee8;
}

.plate-search-toggle input:checked + .toggle-switch::after {
    transform: translateX(18px);
}

.hint {

    margin-top: 18px;

    color: #64748b;

    font-size: 15px;
}

.archive-preview {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    margin-top: 28px;
}

.found-car-card {
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 420px;
    width: 100%;
    background: rgba(255,255,255,0.94);
    border: 1px solid #e5e3f5;
    border-radius: 24px;
    padding: 10px 18px 10px 10px;
    box-shadow: 0 18px 46px rgba(15,23,42,0.12);
    text-align: left;
}

.found-car-card img,
.found-car-photo-placeholder {
    width: 112px;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    object-fit: cover;
    background: #eeedfe;
    flex-shrink: 0;
}

.found-car-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5b4ee8;
    font-weight: 900;
}

.found-car-label {
    color: #5b4ee8;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.found-car-title {
    color: #1a1730;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.2;
}

.found-car-vin {
    margin-top: 6px;
    color: #6b6a8a;
    font-family: monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    width: min(660px, 100%);
}

.preview-stat {
    min-width: 0;
    border: 1px solid #d8d4ff;
    border-radius: 16px;
    background: rgba(255,255,255,.82);
    padding: 12px 14px;
    box-shadow: 0 14px 32px rgba(15,23,42,.08);
}

.preview-stat span {
    display: block;
    color: #5b4ee8;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
}

.preview-stat small {
    display: block;
    margin-top: 6px;
    color: #6b6a8a;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.auth-required-text {
    color: #ec4899;
    font-size: 15px;
    font-weight: 800;
}

.preview-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.preview-check-disabled {
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid #d6d3e8;
    border-radius: 999px;
    background: #e5e3ee;
    color: #8b89a5;
    padding: 11px 18px;
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    cursor: not-allowed;
}

.preview-generate-report {
    border: none;
    border-radius: 18px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(37,99,235,.28);
}

.preview-generate-report:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(37,99,235,.35);
}

.preview-balance-note {
    margin-top: 10px;
    color: #6b6a8a;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}

.preview-vin-form {
    display: none;
    align-items: center;
    gap: 10px;
    width: min(520px, 100%);
    border: 1px solid #e5e3f5;
    border-radius: 20px;
    background: rgba(255,255,255,.74);
    padding: 10px;
    box-shadow: 0 14px 36px rgba(15,23,42,.08);
}

.preview-vin-form input {
    min-width: 0;
    flex: 1;
    border: none;
    background: transparent;
    color: #1a1730;
    font: inherit;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .06em;
    outline: none;
    text-transform: uppercase;
    padding: 10px 12px;
}

.preview-vin-form button {
    border: none;
    border-radius: 999px;
    background: #5b4ee8;
    color: #fff;
    padding: 11px 16px;
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    white-space: nowrap;
}

.preview-vin-form button:disabled {
    background: #d6d3e8;
    color: #8b89a5;
    cursor: not-allowed;
}

.guest-preview-counter {
    max-width: 520px;
    color: #6b6a8a;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
}


/* LOADING */

.loading-box {

    display: none;

    flex-direction: column;

    align-items: center;

    margin-top: 40px;
}

.loading-found-card {
    margin-bottom: 24px;
}

.spinner {

    width: 76px;
    height: 76px;

    border: 6px solid #dbeafe;

    border-top-color: #2563eb;

    border-radius: 50%;

    animation: spin 1s linear infinite;
}

.loading-text {

    margin-top: 24px;

    font-size: 22px;

    font-weight: 700;

    color: #111827;

    min-height: 30px;
}

.vehicle-found-text {

    display: none;

    margin-top: 18px;

    font-size: 18px;

    font-weight: 700;

    color: #2563eb;

    line-height: 1.35;
}

@keyframes spin {

    to {
        transform: rotate(360deg);
    }

}


@media(max-width: 640px) {

    body {
        display: block;
    }

    body.public-menu-open {
        overflow: hidden;
    }

    .public-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 160;
        align-items: center;
        justify-content: space-between;
        background: rgba(255,255,255,.96);
        border-bottom: 1px solid #e5e3f5;
        border-radius: 0;
        padding: 12px 14px;
        box-shadow: none;
        gap: 12px;
    }

    .public-menu-toggle {
        display: flex;
        width: 42px;
        height: 42px;
        border: 1px solid #d8d4ff;
        border-radius: 12px;
        background: #fff;
        color: #5b4ee8;
        flex-shrink: 0;
    }

    .public-menu-toggle span {
        width: 18px;
        height: 2px;
    }

    .public-logo {
        flex: 1;
        justify-content: flex-start;
        font-size: 12px;
    }

    .public-logo-mark {
        min-width: auto;
        height: auto;
        border-radius: 10px;
        padding: 7px 12px;
        font-size: 12px;
    }

    .public-nav {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        transform: translateX(-100%);
        z-index: 150;
        width: min(320px, 86vw);
        flex: none;
        transition: transform .22s ease;
        background: #fff;
        border-right: 1px solid #e5e3f5;
        box-shadow: 18px 0 60px rgba(15,23,42,.18);
        padding: 24px 18px;
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .public-nav-brand {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #5b4ee8;
        font-size: 13px;
        font-weight: 900;
        letter-spacing: .08em;
        margin-bottom: 10px;
    }

    .public-nav a {
        display: flex;
        align-items: center;
        min-height: 46px;
        border: 1px solid transparent;
        border-radius: 12px;
        padding: 12px 14px;
    }

    .public-nav a:hover {
        background: #eeedfe;
        border-color: #d8d4ff;
    }

    .public-nav-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: auto;
        padding-top: 18px;
    }

    .public-nav-actions .auth-button,
    .public-nav-actions .auth-cabinet,
    .public-nav-actions .public-nav-logout {
        width: 100%;
        text-align: center;
        justify-content: center;
        border: 1px solid #d8d4ff;
        border-radius: 999px;
        background: #fff;
        color: #3c3489;
        padding: 11px 14px;
        font-size: 14px;
        font-weight: 800;
        text-decoration: none;
        cursor: pointer;
        box-shadow: none;
    }

    .public-nav-actions .auth-button.login,
    .public-nav-actions .auth-cabinet {
        border-color: #5b4ee8;
        background: #5b4ee8;
        color: #fff;
    }

    .public-nav-actions .public-nav-logout {
        color: #993c1d;
        border-color: #f0c9bd;
        background: #faece7;
    }

    .public-nav-actions .auth-cabinet,
    .public-nav-actions .public-nav-logout {
        display: none;
    }

    body.is-authenticated .public-nav-actions .auth-button {
        display: none;
    }

    body.is-authenticated .public-nav-actions .auth-cabinet,
    body.is-authenticated .public-nav-actions .public-nav-logout {
        display: flex;
    }

    body.public-menu-open .public-nav {
        transform: translateX(0);
    }

    .public-backdrop {
        position: fixed;
        inset: 0;
        z-index: 140;
        background: rgba(26,23,48,.38);
    }

    body.public-menu-open .public-backdrop {
        display: block;
    }

    .public-auth {
        min-width: 0;
        flex: 0 0 auto;
    }

    #authGuestActions {
        gap: 8px;
    }

    #authGuestActions .auth-button:not(.login) {
        display: none;
    }

    .auth-button.login,
    .auth-cabinet {
        border-color: #5b4ee8;
        background: #5b4ee8;
        color: #fff;
        box-shadow: none;
        padding: 8px 12px;
        font-size: 13px;
    }

    .auth-user {
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .auth-user-email {
        display: none;
    }

    .auth-button {
        padding: 10px 13px;
    }

    .wrapper {
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 150px;
        padding-bottom: 46px;
    }

    .public-footer {
        position: static;
        width: 100%;
        padding: 0 42px 34px;
        display: block;
        text-align: center;
    }

    .auth-dialog {
        width: min(430px, calc(100vw - 32px));
        padding: 24px;
    }

    .auth-recaptcha {
        width: 304px;
        min-height: 68px;
        margin-left: auto;
        margin-right: auto;
        transform: scale(.88);
    }

    .logo {
        font-size: 40px;
    }

    .search-box {

        flex-direction: column;

        padding: 10px;
        width: 100%;
        max-width: 560px;
    }

    .search-box input,
    .search-box button {

        width: 100%;
    }

    .found-car-card {
        max-width: 100%;
    }

    .preview-stats {
        grid-template-columns: 1fr;
    }

    .preview-vin-form {
        flex-direction: column;
    }

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

    .search-box button {

        margin-top: 8px;
    }

}

@media(max-width: 360px) {
    .auth-dialog {
        padding: 20px;
    }

    .auth-recaptcha {
        transform: scale(.82);
    }
}
.vin-error {

    display: none;

    margin-top: 16px;

    padding: 12px 14px;

    border-radius: 12px;

    background: #fef2f2;

    color: #b91c1c;

    font-size: 14px;

    font-weight: 600;

    line-height: 1.5;

}
