﻿:root {
    --bs-Green-color: #83cf5d;
    --bs-Greenlight-color: #f6fcf3;
    --bs-Black-color: #060c03;
    --bs-Greyblack-color: #080808;
    --bs-Greyprimary-color: #969696;
    --bs-Greylight-color: #f7f7f7;
    --bs-Fullwhite-color: #ffffff;
    --bs-Stroke-color: #f0f0f0;
    --bs-orange-color: #dc6b0a;
    --bs-orange-light: #fef7f0;
}




.transition-container {
    display: block;
    width: 100%;
    margin-top: 0.5em; /* Adjust as needed for spacing */
}

.transition-words {
    display: inline-block;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    color: #0e844d;
}

    .transition-words span {
        display: inline-block;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
    }

        .transition-words span.active {
            opacity: 1;
        }

.cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background-color: #000;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}



.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none; /* Initially hidden */
}

.spinner {
    width: 250px;
    height: 250px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e0f7fa; /* Spinner background color */
    border-radius: 50%; /* Rounded shape to match border */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Optional shadow for depth */
}

.spinner-border {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    position: absolute;
    animation: spin 2s linear infinite;
    z-index: 1; /* Below text */
}

.spinner-text {
    color: black; /* Adjust color based on the background */
    font-size: small; /* Decrease size to fit within spinner */
    font-weight: bold;
    text-align: center;
    width: 80%; /* Ensure the text does not exceed the spinner's width */
    position: absolute;
    top: 50%;
    transform: translateY(-50%); /* Center the text vertically */
    line-height: 1.5; /* Adjust line-height for better fit */
    pointer-events: none; /* Prevent mouse events from affecting text */
    z-index: 2; /* Ensure text is above spinner border */
    padding: 5px; /* Add some padding for better spacing */
    border-radius: 5px; /* Optional rounded corners for text */
}

.spinner-text span {
    display: block; /* Ensure each span is on a new line */
    white-space: nowrap; /* Prevent wrapping within each line */
    overflow: hidden;
    text-overflow: ellipsis; /* Handle overflow gracefully */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.spinner-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}


.offline-alert {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050;
    padding: 10px;
    background-color: #ffcc00;
    color: #333;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.captcha-code {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

#captchaImage {
    margin-right: 10px;
}

#reloadCaptchaBtn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.reload-icon {
    width: 40px; /* Adjust size as needed */
    height: 40px; /* Adjust size as needed */
}


.btn-primary-custom {
    padding: 10px 20px;
    border-radius: 10px;
    color: var(--bs-Fullwhite-color);
    font-weight: Semibold;
    font-size: 18px;
    background-color: #0e844d;
    text-decoration: none;
    border-color: #0e844d;
    width: 200px;
}



.btn-primary-custom:hover {
    background-color: #0d6efd;
    border-color: #0d6efd;
}


.alert-custom {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    width: 50%;
    margin: 0 auto;
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    width: 30%;
    margin: 0 auto;
}
/*
.alert-custom1 {
    padding: 0.75rem 1rem;
    margin: 0 auto;
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
    padding: 0.75rem 1rem;
    font-size: 0.78rem;
    margin: 0 auto;
}*/




.alert-custom1 {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    width: 50%;
    margin: 0 auto;
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    width: 30%;
    margin: 0 auto;
}




.password-container {
    position: relative;
    display: inline-block;
}

.eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
}



@font-face {
    font-family: Lexend;
    src: url(Lexend/Lexend-VariableFont_wght.ttf);
}

body {
    font-size: 14px;
    font-family: Lexend;
}

.btn-primary {
    padding: 10px 20px;
    border-radius: 10px;
    color: var(--bs-Fullwhite-color);
    font-weight: Semibold;
    font-size: 18px;
    background: #0e844d;
    text-decoration: none;
    border-color: #0e844d;
}

.btn-secondary {
    padding: 10px 10px;
    border-radius: 10px;
    color: var(--bs-orange-color);
    display: inline-block;
    font-weight: Semibold;
    font-size: 18px;
    background: var(--Fullwhite-color);
    text-decoration: none;
}

.btn-tertiary {
    width: 224px;
    height: 48px;
    border-radius: 100px;
    color: var(--bs-orange-color);
    display: inline-block;
    font-weight: Semibold;
    font-size: 18px;
    background: var(--Fullwhite-color);
    text-decoration: none;
    text-align: center;
    padding-top: 20px;
}

/* Buttons */

body {
    background-image: url(bootstrap-5.3.3-dist/image/brokers.png);
    background-repeat: no-repeat;
}

.body-content .container {
    margin-top: 40px;
    margin-bottom: 60px;
}

.body-header {
    background-color: #0e844d;
    margin-top: 16px;
    color: var(--bs-Fullwhite-color);
    border-radius: 8px;
    width: 405px;
    height: 87px;
    text-align: center;
    padding-top: 19px;
    margin-bottom: 40px;
}

.body-content .col-sm-5 {
    padding-right: 40px;
    padding-left: 60px;
}

.body-content .col-sm-7 {
    background-color: #f0fff7;
    border-radius: 16px;
    border: 1px solid var(--bs-Stroke-color);
    width: 586px;
    height: 728px;
    padding-left: 68px;
    padding-top: 24px;
    padding-right: 68px;
    margin-left: 7px;
}

h2 {
    font-family: lexend;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    color: var(--Fullwhite-color);
}

.body-content .col-sm-7 h2 {
    font-family: lexend;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
    color: #0e844d;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 26px;
}

    .form-group label {
        margin-bottom: 12px;
    }

    .form-group input {
        width: 450px;
        height: 48px;
        position: relative;
    }

    .form-group .password-icon {
        position: absolute;
        top: 368px;
        left: 1180px;
        color: var(--bs-Greyprimary-color);
    }

.body-content .col-sm-7 a {
    text-decoration: none;
}

.body-content .text-end {
    text-decoration: none;
    font-family: lexend;
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    color: #0e844d;
    cursor: pointer;
    padding-top: 24px;
}

.body-content .btn-primary {
    padding: 10px 200px;
    border-radius: 10px;
    color: var(--bs-Fullwhite-color);
    border-color: #0e844d;
    font-weight: Semibold;
    font-size: 18px;
    background: #0e844d;
    text-decoration: none;
    margin-top: 24px;
}

footer {
    background-color: #0e844d;
    width: 100%;
    color:white;
}

    footer p {
        text-align: center;
        color: var(--bs-Fullwhite-color);
        margin-left: 580px;
        font-family: lexend;
        font-weight: 300;
        font-size: 14px;
        line-height: 40px;
    }

/* Sign up page begins */
.register-content {
    width: 1310px;
    height: 750px;
    margin-top: 24px;
    margin-left: 80px;
    background-color: var(--bs-orange-light);
    padding: 45px 76px;
    border-radius: 16px;
    border: 1px solid var(--bs-Stroke-color);
    margin-bottom: 24px;
}

    .register-content h1 {
        margin-bottom: 40px;
        color: var(--bs-orange-color);
        text-align: center;
    }

    .register-content .row input {
        width: 450px;
        height: 48px;
    }

    .register-content .row .form-select-lg {
        width: 450px;
        height: 48px;
        color: var(--bs-body-color);
        font-family: lexend;
        font-weight: 400;
        font-size: 16px;
        line-height: 30px;
        padding-left: 12px;
    }

form option {
    color: var(--bs-Greyblack-color);
    font-family: lexend;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
}

.register-content .col-sm-5 {
    margin-right: 0px;
}

.register-content .col-sm-6 {
    margin-left: 80px;
}

form {
    margin-bottom: 60px;
}

.register-content .btn-primary {
    padding: 10px 200px;
    border-radius: 10px;
    color: var(--bs-Fullwhite-color);
    border-color: var(--bs-orange-color);
    font-weight: Semibold;
    font-size: 18px;
    background: var(--bs-orange-color);
    text-decoration: none;
    margin-bottom: 34px;
    margin-top: 20px;
}

.register-footer {
    text-align: center;
}

    .register-footer p {
        color: var(--bs-Greyblack-color);
        font-family: lexend;
        font-weight: 400;
        font-size: 18px;
        line-height: 30px;
    }

    .register-footer a {
        text-decoration: none;
        color: var(--bs-orange-color);
    }

/* password page begins */

.password-content {
    background-color: var(--bs-orange-light);
    border-radius: 16px;
    margin-bottom: 20px;
    margin-top: 24px;
    padding: 40px 80px;
}

    .password-content h1 {
        color: var(--bs-orange-color);
    }

    .password-content .form-group {
        margin-top: 24px;
    }

        .password-content .form-group input {
            margin-bottom: 40px;
            position: relative;
        }

    .password-content .col-sm-4 {
        padding: 20px 40px;
        border: 1px solid var(--bs-Stroke-color);
        margin-left: 80px;
        border-radius: 8px;
    }

        .password-content .col-sm-4 h2 {
            color: var(--bs-orange-color);
            margin-bottom: 18px;
        }

    .password-content .col-sm-4 {
        color: var(--bs-Greyprimary-color);
    }

    .password-content .btn-primary {
        width: 450px;
        height: 48px;
        border-radius: 10px;
        color: var(--bs-Fullwhite-color);
        border-color: var(--bs-orange-color);
        font-weight: Semibold;
        font-size: 18px;
        background: var(--bs-orange-color);
        text-decoration: none;
        margin-bottom: 24px;
        margin-top: 56px;
    }

    .password-content .form-group .password-icon {
        position: absolute;
        top: 380px;
        left: 600px;
        color: var(--bs-Greyprimary-color);

    }

/* captcha begins */

.captcha input {
    height: 70px;
    margin-bottom: 24px;
    margin-top: 24px;
}

.captcha-input {
    margin-bottom: 8px;
}

.uil-refresh,
.uil-volume {
    font-size: 32px;
    color: var(--bs-orange-color);
}

.uil-volume {
    margin-left: 12px;
}

.captcha-code .col-xs-2 img {
    margin-bottom: 24px;
}

/* Success page begin */
.success-content {
    background-color: var(--bs-orange-light);
    border-radius: 16px;
    margin-bottom: 20px;
    margin-top: 24px;
    padding: 130px 80px;
    text-align: center;
}

    .success-content img {
        margin-bottom: 40px;
        color: var(--bs-orange-color);
    }

    .success-content h2 {
        color: #0e844d;
        font-family: lexend;
        font-weight: 400;
        font-size: 16px;
        line-height: 40px;
    }

    .success-content p {
        margin-bottom: 40px;
    }

    .success-content .btn-primary {
        width: 450px;
        height: 48px;
        border-radius: 10px;
        color: var(--bs-Fullwhite-color);
        border-color: #0e844d;
        font-weight: Semibold;
        font-size: 16px;
        background: #0e844d;
        text-decoration: none;
    }

/* forgot password begins */

.forgot-header {
    background-color: var(--bs-Fullwhite-color);
    height: 1024px;
    background-size: cover;
    background-repeat: none;
}

.forgot-body {
    margin-top: 120px;
}

    .forgot-body h2 {
        color: #0e844d;
        font-family: lexend;
        font-weight: 400;
        font-size: 32px;
        line-height: 40px;
    }

    .forgot-body p {
        color: var(--bs-Greyprimary-color);
        font-family: lexend;
        font-weight: 400;
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 40px;
    }

    .forgot-body .col-sm-5 {
        margin-top: 70px;
    }

        .forgot-body .col-sm-5 .btn-primary {
            width: 450px;
            height: 48px;
            border-radius: 10px;
            color: var(--bs-Fullwhite-color);
            border: 1px solid var(--bs-orange-color);
            font-weight: Semibold;
            font-size: 18px;
            background-color: var(--bs-orange-color);
            text-decoration: none;
            margin-right: 80px;
        }

    .forgot-body .row input {
        width: 450px;
        height: 48px;
        margin-bottom: 80px;
    }

/* forgot password begins */

.otp-header {
    background-color: var(--bs-Fullwhite-color);
    height: 1024px;
    background-size: cover;
    background-repeat: none;
    padding-top: 24px;
    padding-left: 40px;
}

    .otp-header .btn-primary {
        margin-left: 0px;
    }

.otp-body {
    margin-top: 120px;
    padding-left: 120px;
}

    .otp-body .row {
        display: flex;
        gap: 120px;
    }

    .otp-body h2 {
        color: var(--bs-orange-color);
        font-family: lexend;
        font-weight: 400;
        font-size: 32px;
        line-height: 40px;
    }

    .otp-body p {
        color: var(--bs-Greyprimary-color);
        font-family: lexend;
        font-weight: 400;
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 40px;
    }

    .otp-body .col-sm-6 {
        margin-top: 50px;
    }

        .otp-body .col-sm-6 .btn-primary {
            width: 450px;
            height: 48px;
            border-radius: 10px;
            color: var(--bs-Fullwhite-color);
            border: 1px solid var(--bs-orange-color);
            font-weight: Semibold;
            font-size: 18px;
            background-color: var(--bs-orange-color);
            text-decoration: none;
            margin-right: 80px;
        }

    .otp-body .row input {
        width: 450px;
        height: 84px;
        margin-bottom: 24px;
    }

    .otp-body .col-sm-5 a {
        color: var(--bs-orange-color);
        font-weight: Semibold;
        font-size: 18px;
        text-decoration: none;
        margin-right: 80px;
    }

/* Reset Popup */

.popup {
    height: 120px;
    width: 450px;
    border-radius: 4px;
    outline: none;
    border: 1px solid var(--Stroke-color);
    font-family: lexend;
    font-weight: 300;
    font-size: 14px;
    line-height: 30px;
    color: var(--Greyprimary-color);
    margin-top: 20px;
    position: relative;
    background-color: var(--bs-Fullwhite-color);
    position: absolute;
    top: -500px;
    left: 700px;
    transform: translate(-50% -50%);
    width: 600px;
    height: 400px;
    padding: 20px;
    background: var(--Fullwhite-color);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 2px 5px 5px rgba(0, 0, 0, 0.1);
    transition: top 0ms ease-in-out 300ms, opacity 300ms ease-in-out, margin-top 300ms ease-in-out;
    position: absolute;
}

    .popup > * {
        margin: 15px 0px;
    }

    .popup h2 {
        font-size: 24px;
    }

    .popup a {
        color: var(--Greyblack-color);
        text-decoration: none;
    }

    .popup .close {
        position: relative;
        margin-left: 500px;
        background-color: var(--bs-orange-light);
        font-size: 24px;
        padding: 5px 15px;
        border-radius: 100%;
    }

.bx-arrow-back {
    background-color: var(--bs-orange-light);
    font-size: 24px;
    padding: 10px 10px;
    border-radius: 100%;
    margin-bottom: 24px;
}

.popup .btn-primary {
    width: 174px;
    height: 52px;
    border-radius: 6px;
    color: var(--bs-Fullwhite-color);
    border-color: var(--bs-orange-color);
    font-weight: Semibold;
    font-size: 18px;
    background: var(--bs-orange-color);
    text-decoration: none;
    margin-top: 40px;
}
/* Reset password begins */

.reset-body {
    padding-top: 100px;
    padding:150px;
}

.reset-password {
    background-color: var(--bs-Fullwhite-color);
    align-items: center;
    text-align: center;
    padding: 40px 80px;
}

.reset-body {
    background-color: var(--bs-Fullwhite-color);
    height: 1024px;
}

.reset-password-header {
    text-align: center;
    align-items: center;
}

.reset-body .form-group {
    padding-left: 420px;
    margin-top: 40px;
    margin-bottom: 80px;
}

    .reset-body .form-group input {
        background-color: var(--bs-Fullwhite-color);
        border: 1px solid var(--bs-Stroke-color);
        margin-bottom: 24px;
        position: relative;
    }

.reset-body .btn-primary {
    width: 310px;
    height: 48px;
    border-radius: 10px;
    color: var(--bs-Fullwhite-color);
    border-color: #0e844d;
    font-weight: Semibold;
    font-size: 18px;
    background: #0e844d;
    text-decoration: none;
}

.reset-body .form-group .password-icon {
    position: absolute;
    top: 395px;
    left: 950px;
}

.reset-body h2 {
    color: #0e844d;
    font-family: lexend;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
}

.reset-body p {
    color: var(--bs-Greyprimary-color);
    font-family: lexend;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
}



