/* +++++++++++++++++ Global css +++++++++++++++++++*/
:root {
    --font-family: "Poppins", sans-serif;
    --light-blue: #669CEC;
    --dark-blue: #368BC6;
    --white-color: #fff;
    --text-color: #282833;
}

* {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
}

body {
    color: #000;
    line-height: 22px;
    font-weight: 400;
    font-family: var(--font-family);
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */

input[type="number"] {
    -moz-appearance: textfield;
}

/* responsive font size */

html {
    font-size: 1rem;
}

@include media-breakpoint-up(sm) {
    html {
        font-size: 1.2rem;
    }
}

@include media-breakpoint-up(md) {
    html {
        font-size: 1.4rem;
    }
}

@include media-breakpoint-up(lg) {
    html {
        font-size: 1.6rem;
    }
}

.btn-dark.focus,
.btn-dark:focus {
    box-shadow: none;
}

/* +++++++++++++++++ Global css +++++++++++++++++++*/

/* OTP page Start */
.login-main {
    position: relative;
    height: auto;
}

.login-main::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background: url(../images/pattern-1.png), #F5F6FA;
    background-repeat: no-repeat;
    background-size: cover;
    width: 40%;
    height: 100%;
    z-index: 1;
}

.login-main::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    background: url(../images/pattern-2.png), #368BC6;
    background-repeat: no-repeat;
    background-size: cover;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.main-container {
    height: 100vh;
}

/* Left side */
.otp-card {
    width: 445px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 10px 0px #E8E9ED;
    padding: 20px;
    margin: auto;
    position: relative;
    z-index: 10;

    h4 {
        font-size: 17px;
        line-height: 21px;
        font-weight: 500;
        color: var(--text-color);
        margin-bottom: 13px;
    }

    p {
        color: #838388;
        font-size: 13px;
        line-height: 17px;
        margin-bottom: 2px;

        span {
            color: var(--text-color);

        }
    }

    .otp-img {
        margin-bottom: 10px;
        height: 200px;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }

    .otp-inputs {
        margin: 22px 0px 28px 0px;

        input {
            width: 60px;
            height: 50px;
            text-align: center;
            font-size: 14px;
            border-radius: 4px;
            border: 1px solid #d2d3d5;
            margin-right: 18px;

        }

        input:last-of-type {
            margin-right: 0;
        }

        input:focus {
            border-color: #0d6efd;
            box-shadow: 0 0 5px rgba(13, 110, 253, 0.5);
            outline: none;
        }
    }

    .btn-submit {
        width: 100%;
        border-radius: 4px;
        background: var(--dark-blue);
        color: var(--white-color);
        font-size: 14px;
        line-height: 18px;
        font-weight: 600;
        padding: 10px 0px;
        box-shadow: none;
    }
        .btn-submit:hover {
            background: var(--dark-blue);
             color: var(--white-color);
        }

    .resend {
        margin-top: 60px;
        font-size: 14px;
        color: #6c757d;

        a {
            color: var(--dark-blue);
            text-decoration: none;
            font-size: 13px;
            line-height: 17px;
            font-weight: 500;
        }

        a:hover {
            text-decoration: underline;

        }
    }
}

/* Right Side */
.right-section {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px 160px;
    position: relative;
    z-index: 10;
    height: 100vh;

    .white-logo {
        height: 70px;
        margin: 0 auto 22px 0;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }

    .right-sec-text {
        h2 {
            font-size: 24px;
            line-height: 28px;
            color: var(--white-color);
            font-weight: 500;

            span {
                color: #FFBF5C;
            }
        }

        h3 {
            font-size: 16px;
            line-height: 20px;
            font-weight: 500;
            color: var(--white-color);
        }

        p {
            font-size: 13px;
            line-height: 20px;
            font-weight: 400;
            color: rgb(255 255 255 / 60%);

        }

        spa a {
            color: #FFBF5C;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }
    }
}

/* OTP page End */
/* Login Page Start */
.cntry-code {
    margin: 10px 0px;

    label {
        font-size: 13px;
        line-height: 17px;
        font-weight: 500;
        color: var(--text-color);
        margin-bottom: 10px;

        span {
            color: #FF0004;
        }
    }

    .cntry-code-wrap {
        /* display: flex;
        align-items: center; */



        .form-select {
            box-shadow: none;
            width: 25%;

            border-radius: 4px 0px 0px 4px;
        }

        .form-select:focus {
            border: 1px solid #ced4da;
        }

        .form-control {
            /* width: 75%;
            border-left: 0px;
            border-radius: 0px 4px 4px 0px; */
            box-shadow: none;
        }

        .form-control:hover {
            outline: none;
        }

        .form-control:focus {
            border: 1px solid #ced4da;
            border-left: 0;
        }
    }
}

.acnt-div {
    margin-top: 35px;
    display: flex;
    justify-content: space-between;

    .signup {
        a {
            color: var(--dark-blue);
            text-decoration: none;
            font-size: 13px;
            line-height: 17px;
            font-weight: 500;
        }

        a:hover {
            text-decoration: underline;
        }
    }
}

/* Login Page End */

/* Basic Info Page start */

.basic-info {
    position: relative;
    height: 100vh;
    width: 100%!important;
    .right-section {
        padding: 40px 20px;
    }

    .stepper {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 0px;
        margin: 16px 0 35px;
    }

    .step {
        display: flex;
        align-items: center;
        gap: .5rem;
        z-index: 1;
        cursor: pointer;
        color: var(--muted);
        font-size: .95rem;
        user-select: none;

        .circle {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 1.5px solid #AEAEB3;
            color: #AEAEB3;
            font-size: 12px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
            transition: all .2s ease;
        }

        .step-head {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-color);
        }
    }

    .step.active {
        color: #111827;

        .circle {
            background: var(--dark-blue);
            color: #fff;
            border: 1.5px solid #368bc6;
        }

        .step.completed {
            .circle {
                background: var(--dark-blue);
                color: #fff;
                opacity: .9;
            }
        }
    }

    .step.active .panel[hidden] {
        display: none !important;
    }

    .req-star {
        color: #FF0004;
        margin-left: .25rem;
    }

    .panel {
        .form-label {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-color);
            margin-bottom: 5px;
        }

        .form-control,
        .form-select {
            border: 1px solid #e4e4ec;
            background-color: transparent;
            box-shadow: none;
            margin-bottom: 10px;
        }

        .input-group {
            .form-control {
                border-right: 0;
            }

            .input-group-text {
                height: 38px;
                background: transparent;
                border-left: 0px !important;
                border: 1px solid #e4e4ec;
                color: #282833;
            }

            .input-group-text i {
                color: #282833 !important;
                font-size: 14px;
            }
        }
    }

    .step-btm {
        .nxt-btn {
            padding: 7px 40px;
            background: var(--dark-blue);
            color: var(--white-color);
            font-size: 14px;
            font-weight: 600;
            border-radius: 4px;
        }

        .pre-btn {
            padding: 7px 40px;
            border: 1px solid #A4A4A9;
            color: #A4A4A9;
            font-size: 14px;
            font-weight: 600;
            border-radius: 4px;
        }
    }

    .mandat {
        font-size: 13px;
        font-weight: 500;
        color: #A4A4A9;
    }

    .up-doc {
        font-size: 13px;
        font-weight: 500;
        color: #A4A4A9;
        display: block;
        margin-bottom: 10px;
    }

    .up-doc-acc {
        .accordion-item {
            border: 1.5px solid #e4e4ec;
            margin-bottom: 15px;

            .accordion-header {}
        }

        .accordion-button {
            color: #393944;
            font-size: 13px;
            font-weight: 500;
            box-shadow: none;
            background-color: transparent;

            .tgl-btn {
                position: absolute;
                right: 45px;
                padding: 5px 10px;
                border-radius: 4px;
                color: var(--white-color);
            }

            .req-btn {
                background: #E5595C;
            }

            .com-btn {
                background: #40C754;
            }
        }

        .accordion-button::after {
            background-size: 15px;
            color: #282833;
            margin-right: -10px;
        }
    }

    .upload-box {
        border: 2px dashed #C2D5E3;
        padding: 20px 20px;
        border-radius: 8px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #EAFDFF;

        i {
            color: var(--dark-blue);
            margin-right: 3px;
        }

        p {
            color: #393944;
            font-weight: 600;
            font-size: 13px;
            margin-bottom: 0;

            span {
                color: #2C81BC;
                margin-right: 6px;
            }
        }

        .sl-file {
            display: none;
            color: var(--dark-blue);
            font-weight: 600;
            font-size: 13px;
        }
    }

    .upload-file-div-2 {
        .upload-box {
            display: block;
            padding: 15px 15px;
        }

        .suprt-text {
            font-size: 11px;
            line-height: 15px;
            font-weight: 400;
            color: #AEAEB3;
        }
    }

    .bootstrap-select {
        box-shadow: none;
    }

    .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
        width: 100%;
    }
}

.basic-info::before {
    background: url(../images/pattern-2.png), #368BC6;
}

.basic-info::after {
    background: #F5F6FA;
}


/* Basic Info Page end */
/* Success Page Start */
.success-div {
    text-align: center;

    .success-head {
        margin-bottom: 50px;

        h2 {
            font-size: 26px;
            line-height: 30px;
            font-weight: 500;
            color: var(--text-color);
        }

        p {
            font-size: 13px;
            font-weight: 500;
            color: #5A5A65;
        }
    }

    .success-img {
        margin-bottom: 50px;
        height: 115px;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }

    .suc-btn {
        .btn {
            padding: 7px 40px;
            background: var(--dark-blue);
            color: var(--white-color);
            font-size: 14px;
            font-weight: 600;
            border-radius: 4px;
        }
    }
}
.sl-file{
    font-size: 14px;
    color: var(--text-color) !important;
}
.preview-container{
    height: 150px;
    display: flex;
    align-items: center;
    img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}
.preview-container .btn{
  position: absolute;
  right: 0;
  top: 0;
  font-size: 8px;
}
/* Success Page End */


/* 17-11-2025 */
.cntry-code-wrap{
    position: relative;
}
.eye-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translate(0, -50%);
    color: #282833;
}
