<style>
    .input-with-icon {
        display: flex;
        align-items: center;
        position: relative;
    }

    .input-with-icon input {
        flex: 1;
        padding-right: 30px;
        /* Adjust the padding to make room for the icon */
    }

    .input-with-icon .icon {
        position: absolute;
        right: 20px;
        /* Adjust the position as needed */
        color: #ddb965;
        margin-bottom: 20px;
    }




    #logincontainer {
        align-items: center;
        background: #000;
        background: radial-gradient(circle, #000 0, #000 0, var(--colorPrimary) 10%, #000 100%);
        display: flex;
        justify-content: center;
        min-height: 100vh;
        padding-bottom: 100px;
        padding-top: 100px;
        width: 100%;
    }

    @media (min-width: 992px) {

        .container,
        .container-lg,
        .container-md,
        .container-sm {
            max-width: 960px;
        }
    }

    .loginLogo img {
        max-width: 80px;
        position: relative;
        width: 100%;
        z-index: 1;
    }

    .button-container {
        display: flex;
        justify-content: space-between;
        /* Aligns the logo to the left and the button to the right */
        align-items: center;
        margin-bottom: 10px;
        /* Adds 10px space below the container */
    }

    .btnConnect {
        background: linear-gradient(90deg, #96792d, #c5a454, #f8e895, #d9bb6e, #f3d67f, #a88d46);
        border: 1px solid transparent;
        border-radius: 10px;
        color: #000;
        font-size: 14px;
        font-weight: 700;
        margin: 10px 0;
        margin-bottom: 30px;
        padding: 8px 16px;
        text-transform: uppercase;
        transition: background .4s;
        float: right;
        /* Aligns the button to the right */
    }




    #handImage {
        -webkit-filter: #ddb965;
        filter: #ddb965;
        width: 60%;
    }

    #trustShlogan {
        color: #ddb965;
        font-size: 25px;
        font-weight: 700;
        margin-top: 15px;
        text-transform: capitalize;
    }

    .heading {
        -webkit-background-clip: text;
        background-clip: text;
        background-image: linear-gradient(90deg, #462523 0, #cb9b51 22%, #f6e27a 45%, #f6f2c0 50%, #f6e27a 55%, #cb9b51 78%, #462523);
        color: var(--colorPrimary);
        color: transparent;
        font-family: Abril Fatface, cursive;
        font-family: Times New Roman, serif;
        font-size: 30px;
        font-weight: 700;
        letter-spacing: 5px;
        margin-bottom: 25px;
        text-align: center;
        text-transform: uppercase;
    }

    .btnPrimary {
        background: linear-gradient(90deg, #96792d, #c5a454, #f8e895, #d9bb6e, #f3d67f, #a88d46);
        border: 1px solid transparent !important;
        border-radius: 20px;
        color: #000 !important;
        display: block;
        font-size: 13px;
        font-weight: 600;
        line-height: 16px;
        margin: auto auto 10px;
        outline: none;
        overflow: hidden;
        padding: 10px;
        position: relative;
        transition: all .3s;
        width: 100%;
        height: 45px;

    }

    .btnPrimary2 {
        background: linear-gradient(90deg, #96792d, #c5a454, #f8e895, #d9bb6e, #f3d67f, #a88d46);
        border: 1px solid transparent !important;
        border: 1px solid transparent !important;
        border-radius: 20px;
        color: #000 !important;
        display: block;
        font-size: 13px;
        font-weight: 600;
        line-height: 16px;
        margin: auto auto 10px;
        outline: none;
        overflow: hidden;
        padding: 10px;
        position: relative;
        transition: all .3s;
        width: 50%;
    }


    .iq-banner {
        position: relative;
        padding: 2% 0 6%;
        z-index: -1;
    }

    .display-3 {
        font-size: 4.5rem;
        font-weight: 300;
        line-height: 1.2;
    }

    h1 {
        text-align: center;
        margin-top: 30px;
        font-family: 'Source Serif Pro', serif;
    }

    .colorcode {
        color: #f9b707;
    }


    .section-field {
        margin-bottom: 15px;
    }

    .mySelectBox {
        width: 100%;
        padding: 8px;
        border-radius: 25px;
        border: 1px solid #322d2d;
        background-color: #252525;
        color: #ffffff;
        appearance: none;
        /* Remove default dropdown arrow */
        -webkit-appearance: none;
        -moz-appearance: none;
        padding-right: 30px;
        /* Space for custom dropdown arrow */
    }

    .mySelectBox:focus {
        outline: none;
        border-color: #252525;
        /* Keep the border color the same on focus */
    }

    .iconselect {
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        pointer-events: none;
        color: #ddb965;
        /* Gold color */
    }
</style>

