* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Arial, sans-serif;

    background: #f4f7fb;
    color: #111827;
}


.app {
    width: 100%;
    max-width: 480px;

    margin: 0 auto;

    min-height: 100vh;

    padding: 20px;
}


/* HEADER */

.top-bar {

    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 25px;
}


.logo {

    width: 46px;
    height: 46px;

    border-radius: 14px;

    background: #1769ff;

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    font-weight: bold;
}


.top-bar h1 {

    margin: 0;

    font-size: 21px;
}


.top-bar p {

    margin: 3px 0 0;

    color: #6b7280;

    font-size: 13px;
}


.back {

    text-decoration: none;

    font-size: 34px;

    color: #111827;

    line-height: 1;
}


/* SCAN CARD */

.scan-card,
.mobile-card {

    background: white;

    border-radius: 24px;

    padding: 30px 22px;

    text-align: center;

    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}


.scan-icon,
.mobile-icon {

    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    border-radius: 22px;

    background: #eaf1ff;

    color: #1769ff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: bold;
    font-size: 22px;
}


.scan-card h2,
.mobile-card h2 {

    margin: 0 0 10px;

    font-size: 25px;
}


.description {

    color: #6b7280;

    line-height: 1.6;

    font-size: 14px;

    margin-bottom: 25px;
}


/* QR */

.qr-box {

    width: 230px;
    height: 230px;

    margin: 25px auto;

    border: 3px solid #1769ff;

    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    background: #fafafa;
}


.qr-demo {

    width: 170px;
    height: 170px;

    background: white;

    border: 10px solid #111827;

    display: flex;
    align-items: center;
    justify-content: center;
}


.qr-demo span {

    font-size: 130px;

    line-height: 1;

    color: #111827;
}


.scan-text {

    color: #6b7280;

    font-size: 13px;

    margin-bottom: 25px;
}


/* BUTTON */

.primary-button {

    width: 100%;

    display: block;

    border: none;

    background: #1769ff;

    color: white;

    padding: 16px;

    border-radius: 13px;

    font-size: 16px;

    font-weight: 600;

    text-decoration: none;

    cursor: pointer;

    transition: 0.2s;
}


.primary-button:hover {

    background: #0d5bea;
}


/* MOBILE FORM */

.mobile-input {

    display: flex;

    border: 1px solid #d9dee8;

    border-radius: 12px;

    overflow: hidden;

    margin: 10px 0 18px;

    background: white;
}


.mobile-input span {

    padding: 15px;

    background: #f5f7fa;

    color: #374151;

    border-right: 1px solid #ddd;
}


.mobile-input input {

    flex: 1;

    border: none;

    outline: none;

    padding: 15px;

    font-size: 16px;

    min-width: 0;
}


label {

    display: block;

    text-align: left;

    font-size: 13px;

    font-weight: 600;

    color: #374151;
}


/* PRIVACY */

.privacy {

    margin-top: 25px;

    display: flex;

    gap: 8px;

    justify-content: center;

    color: #6b7280;

    font-size: 12px;
}


/* ERROR */

.error {

    background: #fff1f2;

    color: #be123c;

    padding: 12px;

    border-radius: 10px;

    margin-bottom: 15px;

    font-size: 13px;
}


/* VERIFIED */

.verified-banner {

    background: #e9f9ef;

    border-radius: 18px;

    padding: 16px;

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 15px;
}


.check-circle {

    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: #16a34a;

    color: white;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 22px;
}


.verified-banner strong {

    color: #15803d;

    font-size: 16px;
}


.verified-banner p {

    margin: 3px 0 0;

    font-size: 12px;

    color: #4b5563;
}


/* CARDS */

.card,
.document-card {

    background: white;

    border-radius: 18px;

    padding: 18px;

    margin-bottom: 14px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}


.vehicle-header {

    display: flex;

    align-items: center;

    gap: 15px;
}


.bike-icon {

    width: 65px;
    height: 65px;

    border-radius: 15px;

    background: #edf4ff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 30px;
}


.vehicle-number {

    font-size: 20px;

    font-weight: 700;
}


.vehicle-model {

    color: #6b7280;

    font-size: 13px;

    margin-top: 4px;
}


.card h3 {

    margin-top: 0;

    font-size: 16px;
}


/* DETAILS */

.detail-row {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 10px 0;

    border-bottom: 1px solid #f0f1f3;

    font-size: 13px;
}


.detail-row:last-child {

    border-bottom: none;
}


.detail-row span {

    color: #6b7280;
}


.detail-row strong {

    text-align: right;

    color: #111827;
}


/* DOCUMENT */

.document-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 10px;
}


.document-header h3 {

    margin: 0;

    font-size: 17px;
}


.document-header span:not(.status) {

    color: #6b7280;

    font-size: 12px;
}


.status {

    padding: 6px 10px;

    border-radius: 20px;

    font-size: 12px;

    font-weight: 600;
}


.status.valid {

    background: #dcfce7;

    color: #15803d;
}


.green-text {

    color: #16a34a !important;
}


/* SECONDARY */

.secondary-button {

    display: block;

    text-align: center;

    padding: 15px;

    border: 1px solid #1769ff;

    border-radius: 13px;

    color: #1769ff;

    text-decoration: none;

    font-weight: 600;

    margin-top: 20px;

    background: white;
}


/* SECURITY */

.security {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 20px;

    padding: 15px;

    color: #4b5563;

    font-size: 13px;
}


.security p {

    margin: 3px 0 0;

    color: #9ca3af;

    font-size: 11px;
}


/* MOBILE */

@media (max-width: 400px) {

    .app {
        padding: 14px;
    }

    .scan-card,
    .mobile-card {
        padding: 25px 17px;
    }

    .qr-box {
        width: 205px;
        height: 205px;
    }

    .qr-demo {
        width: 150px;
        height: 150px;
    }

    .qr-demo span {
        font-size: 110px;
    }

    .detail-row {
        flex-direction: column;
        gap: 4px;
    }

    .detail-row strong {
        text-align: left;
    }

}