html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: 'Poppins', sans-serif;
}
.auth-input[type="file"] {
    padding: 10px 14px;
    height: auto;
    min-height: 52px;
}

    .auth-input[type="file"]::file-selector-button {
        margin-right: 12px;
        border: 0;
        border-radius: 10px;
        padding: 8px 14px;
        background: #eef3f8;
        color: #1f3556;
        font-weight: 600;
    }
.btn,
.form-control,
.form-label,
.auth-title,
.auth-subtitle,
.helper-text {
    font-family: 'Poppins', sans-serif;
}

    .btn:focus,
    .btn:active:focus,
    .btn-link.nav-link:focus,
    .form-control:focus,
    .form-check-input:focus {
        box-shadow: 0 0 0 0.1rem #fff, 0 0 0 0.25rem rgba(37, 140, 251, 0.25);
    }

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.auth-page {
    padding: 45px 16px;
    display: flex;
    justify-content: center;
}

.login-page {
    min-height: 85vh;
    padding: 24px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.leadPage-page {
    padding: 51px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.auth-card {
    width: 100%;
    max-width: 550px;
    border: 0;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
}

.auth-card-body {
    padding: 28px 22px;
}

.auth-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
}

.auth-subtitle {
    font-size: 0.95rem;
    font-weight: 400;
    color: #6b7280;
    margin-bottom: 24px;
}

.form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.auth-input {
    height: 52px;
    border-radius: 14px;
    border: 1px solid #dbe3ec;
    padding: 12px 14px;
    font-size: 16px;
    font-weight: 400;
    box-shadow: none;
}

    .auth-input:focus {
        box-shadow: none;
    }

.phone-input:focus {
    border-color: #6fb203;
    box-shadow: 0 0 0 0.2rem rgba(111, 178, 3, 0.15);
}

.otp-input {
    font-size: 18px;
    text-align: center;
    letter-spacing: 6px;
    font-weight: 500;
}

    .otp-input:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
    }

.btn-auth {
    height: 58px;
    border-radius: 18px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.2px;
    transition: all 0.25s ease;
    border-width: 1px;
    background: #0a2f66;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-auth:hover {
    height: 58px;
    border-radius: 18px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.2px;
    transition: all 0.25s ease;
    border-width: 1px;
    background: #0a2f66;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-login {
    background: linear-gradient(135deg, #093c6c 0%, #66b300 100%);
    border: none;
    color: #fff;
}

 

    .btn-login:active {
        transform: translateY(0);
        box-shadow: 0 8px 18px rgba(111, 178, 3, 0.24);
    }

.btn-secondary-auth {
    background: #fff;
    border: 1.5px solid #d8e0ea;
    color: #1f3556;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

    .btn-secondary-auth:hover,
    .btn-secondary-auth:focus {
        background: #f8fbff;
        border-color: #bfcddd;
        color: #12284a;
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    }

    .btn-secondary-auth:active {
        transform: translateY(0);
        box-shadow: 0 6px 14px rgba(15, 23, 42, 0.05);
    }

.helper-text {
    font-size: 0.85rem;
    font-weight: 400;
    color: #6b7280;
    text-align: center;
    margin-top: 18px;
}

.brand-badge {
    width: 221px;
    height: 69px;
    border-radius: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

    .brand-badge.login-badge {
        background: linear-gradient(135deg, #0a2f66, #029393);
        font-size: 28px;
        box-shadow: 0 10px 25px rgb(20 23 30 / 25%);
    }

    .brand-badge.otp-badge {
        background: linear-gradient(135deg, #0d6efd, #0b5ed7);
        font-size: 24px;
        box-shadow: 0 10px 25px rgba(13, 110, 253, 0.25);
    }

@media (max-width: 576px) {
    .auth-page {
        padding: 45px 16px;
        align-items: stretch;
    }

    .auth-card {
        max-width: 100%;
        border-radius: 20px;
        margin: auto 0;
    }

    .auth-card-body {
        padding: 24px 18px;
    }

    .auth-title {
        font-size: 1.5rem;
    }

    .auth-subtitle {
        font-size: 0.92rem;
    }

    .auth-input,
    .btn-auth {
        height: 50px;
    }

    .otp-input {
        font-size: 17px;
        letter-spacing: 4px;
    }
}
.auth-card-overlap {
    position: relative;
    padding-top: 48px;
}

.brand-badge-overlap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    margin: 0;
    min-width: 240px;
    height: 76px;
    padding: 0 28px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .brand-badge-overlap span {
        white-space: nowrap;
        font-size: 20px;
        font-weight: 700;
        line-height: 1;
    }

@media (max-width: 576px) {
    .auth-card-overlap {
        padding-top: 42px;
    }

    .brand-badge-overlap {
        min-width: 210px;
        height: 68px;
        padding: 0 22px;
        border-radius: 18px;
    }

        .brand-badge-overlap span {
            font-size: 18px;
        }
}

.footer-custom {
    background: linear-gradient(135deg, #0f2d52 0%, #0b7c84 100%);
    color: #fff;
    padding: 28px 0 18px;
    min-height: 157px;
    box-shadow: 0 -8px 30px rgba(15, 45, 82, 0.12);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.footer-subtitle {
    font-size: 13px;
    opacity: 0.85;
    margin-top: 2px;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

    .footer-links a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        opacity: 0.92;
        transition: all 0.2s ease;
    }

        .footer-links a:hover {
            opacity: 1;
            text-decoration: underline;
        }

.footer-bottom {
    font-size: 13px;
    opacity: 0.85;
    text-align: center;
}

@media (max-width: 576px) {
    .footer-custom {
        padding: 24px 0 16px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        width: 100%;
        justify-content: flex-start;
        gap: 14px;
    }

    .footer-bottom {
        text-align: left;
    }
}
.file-input {
    padding-top: 10px;
    padding-bottom: 10px;
    height: auto;
    min-height: 52px;
}

    .file-input::file-selector-button {
        margin-right: 12px;
        border: 0;
        border-radius: 10px;
        padding: 8px 14px;
        background: #eef3f8;
        color: #1f3556;
        font-weight: 600;
    }


.upload-drop-zone {
    border: 2px dashed #cbd5e1;
    border-radius: 14px;
    background: #f8fafc;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

    .upload-drop-zone:hover {
        border-color: #6fb203;
        background: #f0fdf4;
    }

    .upload-drop-zone.dragover {
        border-color: #6fb203;
        background: #ecfdf5;
        transform: scale(1.01);
    }

    .upload-drop-zone.has-file {
        border-color: #16a34a;
        background: #f0fdf4;
    }

.upload-icon {
    font-size: 32px;
    color: #6fb203;
    margin-bottom: 10px;
}

.upload-title {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
}

.upload-subtitle {
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
}

.upload-file-name {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #166534;
    word-break: break-word;
}

.resend-link {
    font-size: 13px;
    text-decoration: none;
    color: #0a2f66;
    font-weight: 600;
}

    .resend-link:disabled {
        color: #9ca3af;
        opacity: 1;
        text-decoration: none;
        cursor: not-allowed;
    }

.upload-dropzone {
    border: 2px dashed #cbd5e1;
    border-radius: 18px;
    background: #f8fafc;
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .upload-dropzone:hover,
    .upload-dropzone.dragover {
        border-color: #0a2f66;
        background: #eff6ff;
    }

.upload-dropzone-content {
    pointer-events: none;
}

.upload-icon {
    font-size: 30px;
    color: #0a2f66;
    margin-bottom: 10px;
}

.single-preview-card,
.vehicle-preview-card {
    position: relative;
}

.single-preview-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.vehicle-preview-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
}

.preview-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.96);
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signature-wrapper {
    background: #fff;
    min-height: 220px;
}

#signaturePad {
    display: block;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    cursor: crosshair;
    touch-action: none;
}

.form-label {
    font-weight: 700;
    color: #0f172a;
}

@@media (max-width: 576px) {
    .auth-card-body {
        padding: 28px 18px 20px 18px;
    }

    .auth-title {
        font-size: 26px;
    }

    .single-preview-image {
        height: 150px;
    }

    .vehicle-preview-image {
        height: 95px;
    }
}

<style >
.thankyou-modal {
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.thankyou-icon-wrap {
    display: flex;
    justify-content: center;
}

.thankyou-icon-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    box-shadow: 0 16px 40px rgba(34, 197, 94, 0.25);
    color: #fff;
    font-size: 42px;
}

.thankyou-title {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.thankyou-text {
    font-size: 16px;
    color: #475569;
    margin: 0 auto;
    max-width: 320px;
}

.thankyou-summary {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 14px 16px;
    color: #1e293b;
    font-size: 14px;
}

    .thankyou-summary div + div {
        margin-top: 6px;
    }

</style >