@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope/Manrope-Regular.woff2") format("woff2"),
        url("../fonts/manrope/Manrope-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope/Manrope-Medium.woff2") format("woff2"),
        url("../fonts/manrope/Manrope-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope/Manrope-SemiBold.woff2") format("woff2"),
        url("../fonts/manrope/Manrope-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope/Manrope-Bold.woff2") format("woff2"),
        url("../fonts/manrope/Manrope-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --lr-light-yellow: #eef3ff;
    --lr-light-green: #e8eefc;
    --lr-primary: #0c2340;
    --lr-primary-dark: #091428;
    --lr-primary-hover: #1e3a5f;
    --lr-accent: #0c2340;
    --lr-gold: #c5a880;
    --lr-dark: #08100a;
    --lr-muted: #6d7485;
    --lr-border: #e2e8f0;
    --lr-card-shadow: 0 20px 60px rgba(12, 35, 64, 0.08);
}

body.registration-page {
    min-height: 100vh;
    margin: 0;
    color: var(--lr-dark);
    font-family: "Manrope", sans-serif;
    background-color: #fafafa;
}

body.registration-page h1,
body.registration-page h2,
body.registration-page h3,
body.registration-page h4 {
    font-family: "Playfair Display", serif;
}

body.registration-page .container {
    padding-right: 15px;
    padding-left: 15px;
    max-width: 1344px;
}

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

.registration-header {
    position: absolute;
    width: 100%;
    z-index: 99999;
    transition: 0.4s all;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.registration-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0;
}
h1,
h2,
h3,
h4 {
    font-family: "Playfair Display", serif;
}
.registration-brand img {
    width: 130px;
    height: auto;
}

.registration-home-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 40px 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--lr-dark);
    font-weight: 600;
    transition: 0.25s ease;
}

.registration-home-link:hover {
    color: var(--lr-primary);
}

.wizard-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 56px;
}

.wizard-showcase {
    padding: 36px 28px 36px 0;
}

.title_badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 4px 18px;
    border-radius: 999px;
    background: rgba(197, 168, 128, 0.12);
    color: var(--lr-primary);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.wizard-showcase h1 {
    margin: 0 0 18px;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.06;
    font-weight: 500;
}
.text-gold-color{
    color: #BAA360;
}
.wizard-showcase p {
    max-width: 520px;
    margin: 0;
    font-size: 16px;
}

.showcase-points {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

.showcase-point {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid #f1f5f9;
    border-radius: 18px;
    background: #ffffff;
}

.showcase-point i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(197, 168, 128, 0.1);
    color: var(--lr-gold);
    font-size: 20px;
}

.showcase-point span {
    font-weight: 600;
}

.wizard-card {
    padding: 42px;
    border: 1px solid #f1f5f9;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: var(--lr-card-shadow);
}

.wizard-progress {
    margin-bottom: 38px;
}

.progress-line {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 18px;
}

.progress-line:before {
    content: "";
    position: absolute;
    top: 22px;
    right: 0;
    left: 0;
    height: 2px;
    background: rgba(8, 16, 10, 0.1);
    z-index: 1;
}

.step-wrapper {
    position: relative;
    z-index: 2;
}

.step-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid var(--lr-border);
    border-radius: 50%;
    background: #fff;
    color: var(--lr-muted);
    font-weight: 700;
}

.step-circle.active {
    border-color: var(--lr-primary);
    background: var(--lr-primary);
    color: #fff;
    box-shadow: 0 10px 24px rgba(12, 35, 64, 0.22);
}

.registration-title,
.wizard-title {
    margin: 0 0 10px;
    font-size: clamp(2rem, 4vw, 2.5rem);
    line-height: 1.12;
    font-weight: 500;
}

.registration-subtitle,
.wizard-subtitle {
    margin-bottom: 30px;
    font-size: 16px;
}

.wizard-subtitle strong {
    display: block;
    margin-top: 8px;
    color: var(--lr-dark);
    font-size: 24px;
}

.form-label,
label {
    margin-bottom: 10px;
    color: var(--lr-dark);
    font-weight: 700;
}

.form-control,
.wizard-form-control {
    min-height: 56px;
    padding: 14px 18px;
    border: 1px solid var(--lr-border);
    border-radius: 18px;
    color: var(--lr-dark);
    background: #fff;
    box-shadow: none;
}

textarea.form-control,
textarea.wizard-form-control {
    min-height: 120px;
}

.form-control:focus,
.wizard-form-control:focus {
    border-color: var(--lr-gold);
    box-shadow: 0 0 0 0.2rem rgba(197, 168, 128, 0.15);
}

.input-group > .form-control,
.input-group > .wizard-form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group > .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.alert {
    border: 0;
    border-radius: 18px;
    padding: 16px 18px;
}

.alert-success {
    color: #0c2340;
    background: #edf2fd;
}

.alert-danger {
    color: #8a2f3b;
    background: #fdecef;
}

.alert-primary,
.alert-info {
    color: #214248;
    background: #e9f7f8;
}

.btn {
    border-radius: 16px;
    padding: 14px 24px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary {
    border-color: var(--lr-accent);
    background: var(--lr-accent);
    color: #fff;
    box-shadow: 0 10px 20px rgba(12, 35, 64, 0.15);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    border-color: var(--lr-accent);
    background: var(--lr-primary-hover) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(12, 35, 64, 0.2);
}

.btn-outline-primary {
    border-color: var(--lr-primary);
    color: var(--lr-primary-dark);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    border-color: var(--lr-primary);
    background: var(--lr-primary);
    color: #fff;
}

.btn-outline-secondary {
    border-color: rgba(8, 16, 10, 0.12);
    color: var(--lr-dark);
    background: #fff;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
    border-color: var(--lr-dark);
    background: var(--lr-dark);
    color: #fff;
}

.registration-option {
    position: relative;
    height: 100%;
    padding: 35px;
    border: 2px solid var(--lr-border);
    border-radius: 24px;
    cursor: pointer;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdf9 100%);
    transition: 0.25s ease;
}

.registration-option:hover {
    border-color: var(--lr-primary);
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(12, 35, 64, 0.12);
}

.registration-option.active {
    border-color: var(--lr-primary);
    background: linear-gradient(180deg, #ffffff 0%, #f3f6fc 100%);
}

.registration-option .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    border-radius: 22px;
    background: rgba(197, 168, 128, 0.1);
    color: var(--lr-gold);
    font-size: 32px;
}

.registration-option h4 {
    margin-bottom: 12px;
    font-weight: 800;
}

.registration-option p {
    margin-bottom: 0;
    color: var(--lr-muted);
    line-height: 1.7;
}

.selected-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--lr-primary);
    color: #fff;
}

.registration-option.active .selected-badge {
    display: flex;
}

.verification-card {
    padding: 30px;
    border: 1px solid var(--lr-border);
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdf9 100%);
}

.verification-list {
    margin: 0;
    padding-left: 20px;
}

.verification-list li {
    margin-bottom: 15px;
    line-height: 1.7;
}

.document-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.document-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border: 2px solid var(--lr-border);
    border-radius: 18px;
    cursor: pointer;
    transition: 0.25s ease;
    background: #fff;
    font-weight: 600;
}

.document-card:hover {
    border-color: var(--lr-primary);
}

.document-card:has(input:checked) {
    border-color: var(--lr-primary);
    background: #f3f6fc;
}

.document-card input {
    accent-color: var(--lr-primary);
}

.otp-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin: 45px auto;
}

.otp-input {
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: 2px solid var(--lr-border);
    border-radius: 20px;
    background: #fff;
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    outline: none;
    transition: 0.25s ease;
}

.otp-input:focus {
    border-color: var(--lr-gold);
    box-shadow: 0 0 0 0.2rem rgba(197, 168, 128, 0.15);
}

.otp-btn {
    width: 340px;
    max-width: 100%;
}

#otpTimer {
    display: block;
    margin-top: 20px;
    color: var(--lr-muted);
}

#resendOtp {
    margin-top: 10px;
    text-decoration: none;
}

.completed-message {
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.9;
    font-size: 18px;
}

.rating-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.rating-btn {
    width: 62px;
    height: 62px;
    border: 1px solid var(--lr-border);
    border-radius: 18px;
    background: #f8fbf6;
    color: #8a94a6;
    font-size: 28px;
    transition: 0.25s ease;
}

.rating-btn:hover {
    border-color: var(--lr-primary);
    color: var(--lr-primary-dark);
    transform: translateY(-2px);
}

.rating-btn.active {
    border-color: var(--lr-primary);
    background: var(--lr-primary);
    color: #fff;
}

.spinner-border.text-primary {
    color: var(--lr-primary) !important;
}

.wizard-footer-text {
    color: var(--lr-muted);
}

@media (max-width: 991.98px) {
    .wizard-wrapper {
        padding-top: 120px;
    }

    .wizard-showcase {
        padding-right: 0;
        text-align: center;
    }

    .showcase-point {
        text-align: left;
    }
}

@media (max-width: 767.98px) {
    .registration-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .wizard-card {
        padding: 28px 20px;
        border-radius: 24px;
    }

    .registration-home-link {
        padding: 0 0 18px;
    }

    .otp-wrapper {
        gap: 10px;
    }

    .otp-input {
        width: 56px;
        height: 56px;
        flex-basis: 56px;
        font-size: 24px;
    }
}


.btn-design-1 {
    background: linear-gradient(45deg, #15274f, #091428);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
}
.btn-design-1:hover {
    background: linear-gradient(45deg, #d6b551, #ffca31);
    color: #ffffff;
}
.btn-design-1:disabled {
    color: #ffffff;
}