* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;

    background: linear-gradient(120deg, #0f4e8a, #477baa, #839ce3, #dfe7ff, #477faa);
    background-size: 200% 200%;
    animation: gradient-move 8s ease-in-out infinite alternate;
    opacity: 0.95;
}

body::-webkit-scrollbar {
    width: 6px;
}

body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
    background: #787878;
    border-radius: 10px;
}

@keyframes gradient-move {
    0% {
        background-position: 0 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}


.main_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 1px);
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem 0;
    border-radius: 10px;
}



.left_section .circle {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;

}

.circle_icon {
    font-size: 28px;
    color: #fff;
}

.circle_top_left {
    left: -35px;
    top: 10%;
    transform: translateY(0);
}

.circle_top_left i {
    color: #ffc385;

}

.circle_middle_left {
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
}

.circle_middle_left i {
    color: #00c9a7;

}

.circle_bottom_left {
    left: -35px;
    bottom: 10%;
    transform: translateY(0);
}

.circle_bottom_left i {
    color: #ffd700;

}

@media (max-width: 767px) {

    .left_section {
        position: relative;
    }

    .left_section .circle {
        top: -29px;
        width: 55px;
        height: 55px;
        position: absolute;
    }

    .circle_top_left {
        left: 10px;
        transform: translateX(0);
    }

    .circle_middle_left {
        left: 50%;
        transform: translateX(-50%);
    }

    .circle_bottom_left {
        right: 10px;
        left: auto;
        transform: translateX(0);
    }
}

.left_section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;

    background: linear-gradient(120deg, #0f4e8a, #477baa, #4273ba, #202c50, #001423);
    background-size: 200% 200%;
    animation: gradient-move 8s ease-in-out infinite alternate;

    border-radius: 12px;
    padding: 20px;
}


.left_section::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 12px;
    background: linear-gradient(to top, #4dafff00, #bdbec4);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    pointer-events: none;
}


.left_section img {
    width: 86%;
    max-width: 86%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 10px;
}


.left_section h4 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}


.right_section form {
    width: 100%;
    max-width: 420px;
    padding: 2.2rem;
    border-radius: 14px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #000;
    background: white;
}

.right_section form>input {
    border: 1px solid blue;
}

.logo_cust {
    text-align: center;
}

.logo_cust h2 {
    color: #000;
    letter-spacing: 0.5px;
    margin-bottom: 1.8rem;
    font-size: 1.2rem;
}

.logo_cust img {
    width: 24%;
}

.right_section form .form-label {
    color: #363333;
    font-size: 14px;
    letter-spacing: 0.28px;
    margin-bottom: 0;
}

.right_section form .form-control {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #000;
    padding: 5px 12px;
    border-radius: 8px;
}

.right_section form .form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    color: #000;
    border-color: #7ab4ff;
    box-shadow: 0 0 0 0.2rem rgba(122, 180, 255, 0.25);
}

.right_section form button {
    background: linear-gradient(90deg, #3a00ff, #6a5cff);
    font-weight: 600;
    border: none;
    padding: 10px 0;
    border-radius: 8px;
}

.right_section form button:hover {
    opacity: 0.85;
}

.right_section form a {
    color: #b3c7ff;
    font-size: 14px;
}

.right_section form a:hover {
    text-decoration: underline;
}

@media (max-width:1050px) {
    .right_section {
        justify-content: center;
    }

    .right_section form {
        border-radius: 12px;
    }
}

.btn_login {
    background: linear-gradient(120deg, #0f4e8a, #477baa, #839ce3, #99aadd, #477faa) !important;

}

.left_section_img h4,
p {
    text-align: center;
    color: #fff;
}

.left_section_img {
    text-align: center;
}

form .form-control,
form .form-select {
    border: 2px solid #e5e8ea !important;
    box-shadow: none !important;
    outline: none !important;
}

form .form-select {
    padding: 5px 12px;
    border-radius: 8px;
}

form .form-control:focus,
form .form-select:focus {
    border: 1px solid #9595a4 !important;
    box-shadow: 0 0 4px rgba(15, 78, 138, 0.4) !important;
    outline: none !important;
}

.password {
    position: relative;
}

.password .field-icon {
    position: absolute;
    top: 71%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #0f4e8a;
    font-size: 0.89rem;
}

.captcha_wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.captcha_wrapper i {
    cursor: pointer;
    color: #007bff;

}

.captcha_box {
    width: 120px;
}

.refresh_icon {
    font-size: 25px;
    cursor: pointer;
    color: #007bff;
}

.enter_captcha {
    width: 150px;
}

.loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fffffff0;
    z-index: 9999;
}

.loader img {
    width: 9%;
}

/* otp section design */
.otp_wrapper {
    margin-top: 40px;
}

.otp_inputs .otp_box {
    width: 55px;
    height: 55px;
    text-align: center;
    transition: 0.3s;
}

.resnd_otp_p {
    color: gray;
}
.resnd_otp_p a{
    color: #0f4e8a;
    text-decoration: none;
}
.hide {
    display: none !important;
}