.login {
    background: #fff;
    min-height: calc(100vh - 60px);
    display: flex;

    @media (max-width: 1024px) {
        min-height: auto;
    }

    .leftContainer {
        width: 55%;
        background: #FFF2E8;
        padding: 24px 0px;
        flex-shrink: 0;

        @media (max-width: 1024px) {
            display: none;
        }

        .loginWrapper {
            width: 82%;
            margin: 0 auto;
            padding: 0px 15px;



            .loginTitle {
                color: #253858;
                font-family: Roboto;
                font-size: 29px;
                font-style: normal;
                font-weight: 300;
                line-height: 42px;
                margin-top: 40px;

                label {
                    color: #F78631;
                    font-weight: 700;
                    font-size: 32px;
                }


            }

            .loginBanner {
                i {
                    background: url(https://static.pbcdn.in/sme-cdn/images/docprime/getDocprime-img.svg) no-repeat;
                    width: 408px;
                    height: 342px;
                    display: block;
                    background-size: 100%;
                    margin: 32px auto 42px;
                }
            }

            .appDownload {
                display: flex;
                flex-direction: column;
                row-gap: 8px;

                p {
                    color: #253858;
                    text-align: center;
                    font-family: Roboto;
                    font-size: 14px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 24px;
                    letter-spacing: 0.224px;
                }

                >div {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    column-gap: 24px;
                }
            }
        }
    }

    .rightContainer {
        display: flex;
        padding-top: 7%;
        justify-content: center;
        width: 45%;

        @media (max-width: 1024px) {
            width: 100%;
            flex-direction: column;
            background: url(https://static.pbcdn.in/sme-cdn/images/docprime/bg-login-patan.svg) no-repeat, #FFF2E8;
            height: 100vh;
            justify-content: space-between;
            background-size: 100%;
            padding-top: 32px;
        }

        .mobileViewTitle {
            padding: 0px 16px;
            color: #253858;
            font-family: Roboto;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 24px;
            margin-top: 38px;
            display: none;

            @media (max-width: 1024px) {
                display: block;
            }

            span {
                color: #F78631;
            }
        }


        .loginFormContainer {
            display: flex;
            flex-direction: column;
            row-gap: 24px;
            max-width: 328px;
            width: 100%;
            background: #fff;
            border-radius: 24px 24px 0px 0px;

            @media (max-width: 1024px) {
                max-width: 100%;
                padding: 24px 16px;
                box-shadow: 0px -6px 20px 0px rgba(37, 56, 88, 0.14);
                min-height: 60vh;
            }

            .loginFormHeader {
                display: flex;
                flex-direction: column;
                row-gap: 8px;

                h2 {
                    color: #253858;
                    font-family: Roboto;
                    font-size: 24px;
                    font-style: normal;
                    font-weight: 700;
                    line-height: normal;
                    margin: 0px;

                    @media (max-width: 1024px) {
                        font-size: 20px;
                    }
                }

                p {
                    color: #253858;
                    font-family: Roboto;
                    font-size: 16px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: normal;
                    margin: 0px;

                    span {
                        color: #F78631;
                        font-weight: 500;
                        cursor: pointer;
                    }
                }

            }

            .loginForm {

                .formGroup {
                    display: flex;
                    flex-direction: column;
                    row-gap: 32px;
                    position: relative;



                    .inputField {
                        position: relative;

                        input {
                            border-radius: 8px;
                            border: 1px solid #97A0AF;
                            background: #FFF;
                            padding: 16px;
                            color: #253858;
                            font-family: Roboto;
                            font-size: 16px;
                            font-style: normal;
                            font-weight: 400;
                            line-height: 24px;
                            width: 100%;
                            outline: none;
                        }

                        .error-message {
                            color: rgb(255, 0, 0);
                            font-size: 12px;
                            margin: 10px 0px;
                            text-align: center;
                            display: block;
                            position: absolute;
                            bottom: -30px;
                            left: 12px;
                        }
                    }

                    .inputFieldMobile {
                        border-radius: 8px;
                        border: 1px solid #AEB4BE;
                        background: #FFF;
                        display: flex;
                        height: 56px;
                        position: relative;

                        @media (max-width: 1024px) {
                            padding: 16px 0px;
                        }

                        .countryCode {
                            display: flex;
                            align-items: center;
                            padding: 0px 10px;
                            width: 34%;
                            flex-shrink: 0;
                            position: relative;
                            column-gap: 30px;
                            cursor: pointer;


                            ul {
                                list-style: none;
                                margin: 0px;
                                padding: 0px;
                                position: absolute;
                                bottom: -172px;
                                left: 4px;
                                width: 324px;
                                background: #fff;
                                padding: 0px 0px;
                                max-height: 159px;
                                overflow: auto;
                                border: 1px solid #ccc;
                                border-radius: 8px;
                                z-index: 99;

                               

                                @media(max-width: 1024px) {
                                    width: 290px;
                                    top: 46px;
                                }

                                &::-webkit-scrollbar {
                                    width: 5px;
                                  }

                                  &::-webkit-scrollbar-track {
                                    background: #f1f1f1;
                                  }
                                  &::-webkit-scrollbar-thumb {
                                    background: #888;
                                  }



                                li {
                                    border-bottom: 1px solid #ccc;
                                    padding: 11px 10px;
                                    font-size: 14px;
                                    display: flex;
                                    align-items: center;
                                    column-gap: 6px;
                                    cursor: pointer;
                                    &:last-child{
                                        border: none;
                                    }

                                    img {
                                        width: 24px;
                                        height: 18px;
                                        object-fit: contain;
                                    }

                                    &:hover {
                                        background: #f2d5bf;
                                    }
                                }
                            }

                            i {
                                content: "";
                                width: 8px;
                                height: 8px;
                                border: solid #505F79;
                                border-width: 0 0 2px 2px;
                                position: absolute;
                                transform: rotate(315deg);
                                top: 4px;
                                right: -20px;
                                cursor: pointer;

                                @media (max-width: 1024px) {
                                    top: 6px;
                                }
                            }

                            svg {
                                color: #6B7280;
                                cursor: pointer;
                                font-size: 24px;
                            }

                            label {
                                color: #253858;
                                font-family: Roboto;
                                font-size: 16px;
                                font-style: normal;
                                font-weight: 400;
                                line-height: 26px;
                            }

                            img {
                                width: 24px;
                                height: 18px;
                                object-fit: contain;
                            }
                        }

                        input {
                            width: 60%;
                            flex-shrink: 0;
                            border: none;
                            outline: none;
                            padding: 0px 0px 0px 12px;
                        }

                        .error-message {
                            color: rgb(255, 0, 0);
                            font-size: 12px;
                            margin: 10px 0px;
                            text-align: center;
                            display: block;
                            position: absolute;
                            bottom: -30px;
                            left: 12px;
                        }
                    }



                    .hidden {
                        display: none;
                    }

                    .selectField {
                        position: relative;

                        select {
                            border-radius: 8px;
                            border: 1px solid #97A0AF;
                            background: #FFF;
                            padding: 16px;
                            color: #253858;
                            font-family: Roboto;
                            font-size: 16px;
                            font-style: normal;
                            font-weight: 400;
                            line-height: 24px;
                            width: 100%;
                            outline: none;
                        }
                    }

                    .error-message {
                        color: rgb(255, 0, 0);
                        font-size: 12px;
                        margin: 10px 0px;
                        text-align: center;
                        display: block;
                        position: absolute;
                        bottom: -30px;
                        left: 12px;
                    }

                }


                .btnContinue {




                    button {
                        border-radius: 8px;
                        background: #F78631;
                        width: 100%;
                        color: #FFF;
                        font-family: Roboto;
                        font-size: 16px;
                        font-style: normal;
                        font-weight: 600;
                        line-height: 24px;
                        height: 56px;
                        cursor: pointer;
                        outline: none;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        margin-top: 32px;
                        transition: transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
                        border: none;
                        outline: none;
                    }

                    &:active {
                        transform: scale(0.9);
                        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
                    }

                    &.disable {
                        background: #F1F5F9;
                        cursor: no-drop;

                        button {
                            color: #B4BFC9;
                            cursor: no-drop;
                        }
                    }
                }

                .policyText {
                    color: #253858;
                    text-align: center;
                    font-family: Roboto;
                    font-size: 10px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: normal;
                    margin-top: 12px;

                    a {
                        color: #F78631;
                        text-decoration: none;
                    }
                }
            }

        }

        .otpContainer {
            display: flex;
            flex-direction: column;
            row-gap: 24px;
            max-width: 328px;
            width: 100%;
            background: #fff;
            border-radius: 24px 24px 0px 0px;
            text-align: center;

            @media (max-width: 1024px) {
                max-width: 100%;
                padding: 24px 16px;
                position: absolute;
                bottom: 0px;
                min-height: 60vh;
                box-shadow: 0px -6px 20px 0px rgba(37, 56, 88, 0.14);

            }

            .otpFormHeader {
                display: flex;
                flex-direction: column;
                row-gap: 24px;

                h2 {
                    color: #253858;
                    font-family: Roboto;
                    font-size: 24px;
                    font-style: normal;
                    font-weight: 700;
                    line-height: normal;
                    margin: 0px;

                    @media (max-width: 1024px) {
                        font-size: 20px;
                    }
                }

                p {
                    color: rgba(37, 56, 88, 0.70);
                    font-family: Roboto;
                    font-size: 16px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: normal;
                    margin: 0px;

                    span {
                        color: #F78631;
                        font-weight: 500;
                        cursor: pointer;
                    }

                    label {
                        color: #253858;
                    }
                }

            }

            .otpForm {
                position: relative;

                form {
                    display: flex;
                    flex-direction: column;
                    row-gap: 24px;


                    .otpField {

                        display: flex;
                        justify-content: space-between;
                        column-gap: 16px;

                        input {
                            border-radius: 4px;
                            border: 1px solid #9FA4A8;
                            width: 41.333px;
                            height: 48px;
                            flex-shrink: 0;
                            padding: 16px 0px;
                            text-align: center;
                            outline: none;
                        }
                    }

                    .resend {
                        color: #F78631;
                        text-align: center;
                        font-size: 16px;
                        font-style: normal;
                        font-weight: 500;
                        line-height: 24px;
                        text-decoration: underline !important;
                        cursor: pointer;
                    }


                    .btnContinue {




                        button {
                            border-radius: 8px;
                            background: #F78631;
                            width: 100%;
                            color: #FFF;
                            font-family: Roboto;
                            font-size: 16px;
                            font-style: normal;
                            font-weight: 600;
                            line-height: 24px;
                            height: 56px;
                            cursor: pointer;
                            outline: none;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            transition: transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
                            color: #fff;
                            border: none;
                            outline: none;
                        }

                        &:active {
                            transform: scale(0.9);
                            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
                        }

                        &.disable {
                            background: #F1F5F9;
                            cursor: no-drop;

                            button {
                                color: #B4BFC9;
                                cursor: no-drop;
                            }
                        }
                    }
                }

                .error-message {
                    color: rgb(255, 0, 0);
                    font-size: 12px;
                    margin: 10px 0px;
                    text-align: center;
                    display: block;
                    position: absolute;
                    left: 51%;
                    transition: le;
                    transform: translate(-50%, 45px);
                    width: 100%;
                }

                .policyText {
                    color: #253858;
                    text-align: center;
                    font-family: Roboto;
                    font-size: 10px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: normal;
                    margin-top: 12px;

                    a {
                        color: #F78631;
                        text-decoration: none;
                    }
                }
            }






        }

    }

    .rightContainerFeedBack {
        display: flex;
        padding-top: 7%;
        justify-content: center;
        width: 45%;

        @media (max-width: 1024px) {
            width: 100%;
            flex-direction: column;
            background: #fff;
            height: 100vh;
            justify-content: flex-start;
            background-size: 100%;
            padding-top: 32px;
        }

        .customerFeedbackContainer {
            width: 80%;
            display: flex;
            column-gap: 16px;

            @media (max-width: 1024px) {
                width: 100%;
                padding: 36px 16px;
                flex-direction: column;
                row-gap: 16px;
            }

            .iconSuccess {
                width: 42px;
                height: 40px;
                flex-shrink: 0;
            }

            .customerFeedback {
                h2 {
                    color: #253858;
                    font-family: Merriweather;
                    font-size: 18px;
                    font-style: normal;
                    font-weight: 700;
                    line-height: 26px;
                }

                p {
                    color: #253858;
                    font-family: Roboto;
                    font-size: 14px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 22px;
                    margin: 0px;
                }

                .slider-container {
                    width: 100%;
                    overflow: hidden;
                    margin: 32px auto 0px;
                    border-radius: 10px;
                    position: relative;
                }

                .slider-track {
                    display: flex;
                    transition: transform 0.5s ease-in-out;
                    width: 100%;
                }

                .slide {
                    min-width: 100%;
                    box-sizing: border-box;
                }

                .slide img {
                    width: 100%;
                    display: block;
                    border-radius: 10px;
                }

                .dots {
                    text-align: center;
                    margin-top: 15px;
                }

                .dot {
                    display: inline-block;
                    width: 10px;
                    height: 10px;
                    margin: 0 5px;
                    background-color: #DFE1E6;
                    border-radius: 50%;
                    cursor: pointer;
                }

                .dot.active {
                    background-color: #F78631;
                }
            }
        }
    }
}

.loader {
    width: 40px;
    height: 40px;
    border: 4px solid #fff;
    border-top: 4px solid #3498db;
    /* blue spinner */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: auto;
    /* optional: center horizontally */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}