@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


:root {
    --default-body-bg-color: rgb(20, 20, 20);
    --theme-bg-gradient: #021e18;
    --primary-rgb: 0, 255, 0;
    --main-color: #970647;
    --main-color-one: #F4EFFF;
    --main-color-two: #8d4d00;
    --win-color: #00af55;
    --lose-color: #ff0400;
    --yellow-color: #ffbd00;
    --sb-color: #326c0d;
    --sb-color-dark: #205c19;
    --sb-color-two: #851616;
    --sb-color-two-dark: #600b0b;
}



* {
    font-family: "Inter", sans-serif;
}

label {
    color: #6c757d;
    font-size: 16px;
}

body {
    color: #181a20;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background: #eff3f9;
}

    body:before {
        /* content: ""; */
        position: absolute;
        width: 100%;
        height: 100%;
        inset-inline-start: 0;
        inset-inline-end: 0;
        top: 0;
        bottom: 0;
        background-position: center;
        background-repeat: repeat;
        opacity: 1;
        z-index: -1;
    }

h1 {
    color: #000;
    font-weight: 500;
}

.login-bg {
    min-width: 50%;
}

    .login-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.dash_card {
    color: #fff;
    align-items: center;
    display: flex;
    background: #fff;
    border-radius: 0;
    min-width: 50%;
}

    .dash_card:before {
        /* content: ''; */
        position: absolute;
        z-index: -1;
        left: 0;
        right: 0;
        margin: auto;
        width: 50px;
        height: 3px;
        background: var(--main-color);
    }

.new-box-line {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    display: block;
    box-sizing: border-box;
    display: none !important;
}

    .new-box-line:nth-child(1) {
        animation: animate 4s linear infinite;
        background: linear-gradient(to left, #da9c42 10%, transparent);
        width: 100%;
        height: 1px;
    }

    .new-box-line:nth-child(2) {
        animation: animate-two 4s linear infinite;
        background: linear-gradient(to top, #da9c42 10%, transparent);
        width: 1px;
        height: 100%;
        left: auto;
        right: 0;
    }

    .new-box-line:nth-child(3) {
        animation: animate-three 4s linear infinite;
        background: linear-gradient(to right, #da9c42 10%, transparent);
        width: 100%;
        height: 1px;
        top: auto;
        bottom: 0;
    }

    .new-box-line:nth-child(4) {
        animation: animate-four 4s linear infinite;
        background: linear-gradient(to bottom, #da9c42 10%, transparent);
        width: 1px;
        height: 100%;
    }

.dash_card .card-arrow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
}

.card-arrow-bottom-left, .card-arrow-bottom-right, .card-arrow-top-left, .card-arrow-top-right {
    width: 10px;
    height: 10px;
    position: absolute
}

    .card-arrow-bottom-left:before, .card-arrow-bottom-right:before, .card-arrow-top-left:before, .card-arrow-top-right:before {
        content: "";
        position: absolute;
        width: 2px;
        height: 50px;
        background: linear-gradient(to bottom, var(--main-color), transparent);
    }

    .card-arrow-bottom-left:after, .card-arrow-bottom-right:after, .card-arrow-top-left:after, .card-arrow-top-right:after {
        content: "";
        position: absolute;
        width: 50px;
        height: 2px;
        background: linear-gradient(to right, var(--main-color), transparent);
    }

.card-arrow-top-left, .card-arrow-top-right {
    top: 0
}

    .card-arrow-top-left:before, .card-arrow-top-right:before {
        top: 2px
    }

    .card-arrow-top-left:after {
        top: 0;
    }

    .card-arrow-top-right:after {
        top: 0;
        background: linear-gradient(to left, var(--main-color), transparent);
    }

.card-arrow-bottom-left, .card-arrow-bottom-right {
    bottom: 0
}

    .card-arrow-bottom-left:before {
        bottom: 2px;
        background: linear-gradient(to top, var(--main-color), transparent);
    }

    .card-arrow-bottom-right:before {
        bottom: 2px;
        background: linear-gradient(to top, var(--main-color), transparent);
    }

    .card-arrow-bottom-left:after {
        bottom: 0;
        background: linear-gradient(to right, var(--main-color), transparent);
    }

    .card-arrow-bottom-right:after {
        bottom: 0;
        background: linear-gradient(to left, var(--main-color), transparent);
    }

.card-arrow-bottom-left, .card-arrow-top-left {
    left: 0
}

    .card-arrow-bottom-left:after, .card-arrow-bottom-left:before, .card-arrow-top-left:after, .card-arrow-top-left:before {
        left: 0
    }

.card-arrow-bottom-right, .card-arrow-top-right {
    right: 0
}

    .card-arrow-bottom-right:after, .card-arrow-bottom-right:before, .card-arrow-top-right:after, .card-arrow-top-right:before {
        right: 0;
    }


.reg-txt {
    /* color: #fff; */
}

.img-fluid {
    max-width: 100% !important;
    height: auto;
}

.form-control:focus {
    box-shadow: none;
}

.login-box .alert {
    padding: 15.5px 20px;
    font-size: 13px;
    border: none !important;
    border-radius: 3px;
    margin-bottom: 25px;
}

.login-box .alert-dismissible .btn-close {
    padding: 18.5px 19px;
    background-size: 8px;
}

    .login-box .alert-dismissible .btn-close:focus,
    .login-box .alert-dismissible .btn-close:active {
        box-shadow: none;
    }

.login-box .password-indicator {
    position: absolute;
    right: 15px;
    top: 17px;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 300ms, opacity 500ms;
    font-size: 17px;
    color: #999;
}

.login-box .password-wrapper:hover .password-indicator {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s linear 0s, opacity 500ms;
    font-size: 17px;
    color: #555;
}

.login-box .login-popover {
    font-size: 14px;
    color: #777;
    cursor: help;
}

.login-box .login-popover-abs {
    position: absolute;
    right: 15px;
    top: 15px;
}

.our-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.our-video-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    border-radius: 46px;
    left: 0;
    top: 0;
    bottom: 0;
    padding: 22px;
}


.login-5:before {
    /* content: ""; */
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    /* background-color: #00000085; */
    width: 100%;
    height: 100%;
    z-index: 1;
    margin: auto;
    /* backdrop-filter: blur(12px); */
}


.popover {
    border: 1px solid #ebeef5 !important;
    box-shadow: 0 2px 12px 0 rgb(0 0 0 / 10%);
}

.popover-header {
    box-shadow: none;
    border: 0px;
    background: #fff;
    color: #555;
    font-size: 15px;
    padding-bottom: 5px;
}

.popover-body {
    padding: 5px 10px 10px 16px;
    color: #777;
    font-size: 13px;
}

.login-box .form-group label.error {
    font-size: 13px;
    text-align: left;
    color: #535353;
    width: 100%;
}

.input-group-text {
    width: 50px;
    justify-content: center;
    background: #ffffff;
}

@media (max-width: 992px) {
    .login-1 .none-992 {
        display: none !important;
    }
}



.login-5 {
}

    .login-5 .form-section a {
        text-decoration: none;
        color: #6c757d;
    }

.form_parent {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.login-5 .form-inner {
    width: 100%;
    text-align: left;
    padding: 50px;
    border-radius: 6px;
    position: relative;
    z-index: 9;
}

.form-inner-width {
}

.login-5 .register-form-inner {
    max-width: 700px;
}

/*.login-5 .form-inner:before {
        content: "";
        width: 75px;
        height: 150px;
        position: absolute;
        top: 30px;
        right: 0;*/
/*background: url(../img/img-54.png?v=11) top left repeat;*/
/*background-size: cover;
        z-index: -1;
    }*/

/*.login-5 .form-inner:after {
        content: "";
        width: 75px;
        height: 150px;
        position: absolute;
        bottom: 30px;
        left: 0;*/
/*background: url(../img/img-53.png?v=11) top left repeat;*/
/*background-size: cover;
        z-index: -1;
    }*/

.login-5 .form-section .extra-login {
    float: left;
    width: 100%;
    text-align: center;
    position: relative;
}

    .login-5 .form-section .extra-login::before {
        position: absolute;
        left: 0;
        top: 10px;
        width: 100%;
        height: 1px;
        background: #e4e4e4;
        content: "";
    }

    .login-5 .form-section .extra-login > span {
        width: auto;
        float: none;
        display: inline-block;
        padding: 1px 20px;
        z-index: 1;
        position: relative;
        font-size: 14px;
        color: #535353;
        text-transform: capitalize;
        background: #fff;
    }

.login-5 .form-section p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 16px;
}

    .login-5 .form-section p a {
        text-decoration: underline;
        color: #6c757d;
    }

.login-5 .form-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.login-5 .form-section .thembo {
    margin-left: 4px;
}

.login-5 .form-section h3 {
    margin: 0 0 25px;
    font-size: 18px;
    font-weight: 500;
    color: #181a20;
}

.login-5 .form-section .form-group {
    margin-bottom: 10px;
}

.login-5 .form-section .form-box {
    float: left;
    text-align: left;
    position: relative;
    border-radius: 6px;
    display: flex;
    width: 100%;
    align-items: center;
}

    .login-5 .form-section .form-box:before {
        content: '';
        position: absolute;
        left: 33px;
        top: 100%;
        margin: auto;
        width: 1px;
        height: 25px;
        /* background: #818181; */
    }

    .login-5 .form-section .form-box label {
        color: #03060e;
        font-size: 16px;
        margin-bottom: 5px;
    }

.login-5 .form-section .form-control {
    padding: 0 15px 0 40px;
    font-size: 14px;
    outline: none;
    color: #5b5b98;
    font-weight: 500;
    background: transparent;
    border: 1px solid #e4e4e5;
    border-radius: 4px;
    color: #575962;
    height: 56px;
    line-height: 56px;
}

.country-code-div {
    display: grid;
    grid-template-columns: 90px 1fr;
}

    .country-code-div #txt_code {
        padding-right: 0;
    }

    .country-code-div #txtmobile {
        padding-left: 15px;
    }

.login-5 .form-section .form-control option {
    background: #000;
    color: #fff;
}

.login-5 .form-section .form-control::-webkit-input-placeholder {
    color: #d5d5d5;
}

.login-5 .form-section .form-box i {
    border-radius: 10px;
    display: grid;
    place-content: center;
    position: absolute;
    z-index: 9;
    bottom: 0;
    left: 16px;
    color: #999999;
    font-size: 16px;
    height: 56px;
    line-height: 56px;
}

.form-new-element {
    position: relative;
    width: 100%;
}

.login-5 .form-section .checkbox .terms {
    margin-left: 3px;
}

.login-5 .form-section .terms {
    margin-left: 3px;
}

.login-5 .form-section .form-check {
    float: left;
    margin-bottom: 0;
    padding-left: 25px;
    font-size: 16px;
    color: #535353;
}

    .login-5 .form-section .form-check .form-check-input {
        margin-left: -25px;
    }

    .login-5 .form-section .form-check a {
        color: #535353;
    }

.login-5 .form-check-input:focus {
    border-color: #ff013d;
    outline: 0;
    box-shadow: none;
}

.login-5 .form-check-input:checked {
    background-color: #00c5e7;
    border-color: #00c5e7 !important;
}

.login-5 .form-section .form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0;
    vertical-align: top;
    position: absolute;
    border: 2px solid #c5c3c3;
    border-radius: 0;
}

.login-5 .form-section a.forgot-password {
    font-size: 16px;
    text-decoration: underline;
}

.login-5 a.back-btn {
    font-size: 16px;
    color: #2d2c31;
}


.login-5 .logo img {
    margin-bottom: 20px;
    width: 150px;
}

.login-5 .btn-theme {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 100%;
    color: #ffffff;
    overflow: hidden;
    overflow: hidden;
    text-transform: capitalize;
    display: inline-block;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
    font-size: 17px;
    font-weight: 400;
    border-radius: 3px;
    border: none;
}

    .login-5 .btn-theme:hover {
        color: #fff;
        /* background: linear-gradient(90deg, rgba(114,15,235,1) 0%, rgba(215,42,106,1) 100%); */
        background-position: right;
    }

        .login-5 .btn-theme:hover::before {
            left: 0%;
            -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
        }

    .login-5 .btn-theme span {
        position: relative;
        z-index: 1;
    }

.login-5 .btn-check:focus + .btn, .btn:focus {
    outline: 0;
    box-shadow: none;
}

.login-5 .btn-lg {
    padding: 0 50px;
    line-height: 55px;
    outline: 2px solid #fff;
    outline-offset: -7px;
    border-radius: 35px;
}

.login-5 .btn-md {
    padding: 0 45px;
    line-height: 50px;
}

.login-5 .btn {
    box-shadow: none !important;
    background: linear-gradient(90deg, rgba(215,42,106,1) 0%, rgba(114,15,235,1) 100%);
    background-size: 200%;
    background-position: left;
    transition: all .5s;
}

.login-5 .btn-primary {
}

.login-5 .btn-theme:before {
    background: #896907;
}

.login-5 .form-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.login-5 .social-list {
    padding: 0;
    text-align: center;
}

    .login-5 .social-list li a {
        -webkit-transition: all 0.8s;
        transition: all 0.8s;
        bottom: 15px;
    }

    .login-5 .social-list li {
        display: inline-block;
    }

        .login-5 .social-list li a {
            margin: 1px;
            font-size: 14px;
            font-weight: 500;
            width: 110px;
            height: 40px;
            line-height: 40px;
            border-radius: 3px;
            display: inline-block;
            text-align: center;
            color: #fff;
        }

            .login-5 .social-list li a:hover {
                text-decoration: none;
            }

.login-5 .facebook-bg {
    background: #4867aa;
}

    .login-5 .facebook-bg:hover {
        background: #3d5996;
        color: #fff;
    }

.login-5 .twitter-bg {
    background: #33CCFF;
}

    .login-5 .twitter-bg:hover {
        background: #56d7fe;
    }

.login-5 .google-bg {
    background: #db4437;
}

    .login-5 .google-bg:hover {
        background: #dc4e41;
    }

@media (max-width: 992px) {
    .login-5 .form-inner {
        padding: 15px;
    }
}
/** Login 5 end **/

.show-password {
    cursor: pointer;
    padding: 0 13.5px;
    color: #999999;
    border-left: 0;
    width: 46px;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 56px;
    line-height: 56px;
}

.register_qr {
    border: 2px dashed #2463f4;
    border-radius: 14px;
    overflow: hidden;
    width: auto;
    display: inline-block;
}

    .register_qr img {
        width: 100%;
        width: 140px;
    }

.register_address {
    background: #2463f4;
    color: #fff;
    padding: 10px;
    /* padding-top: 24px; */
    margin-bottom: 15px;
    border-radius: 5px;
    position: relative;
    /* display: inline-block; */
}

    .register_address .copy_icon {
        position: absolute;
        top: 13px;
        right: 9px;
        cursor: pointer;
    }

    .register_address p {
        color: #fff !important;
        word-break: break-all;
        display: inline-block;
    }

.login-signup-animation .card {
    width: 100%;
    height: 100vh;
    background: url("../images/phone-mockup.png?v=11");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

/*animation start*/
.login-signup-animation .card {
    border-radius: 25px;
    border: double 5px transparent;
    /*Set both inset and outset box shadow using CSS, separated by , */
    box-shadow: inset -10px -10px 80px 1px rgba(0, 0, 0, 0.3), 10px 20px 50px 10px rgba(0, 0, 0, 0.5);
}


.login-signup-animation .card {
    color: #555;
    width: 320px;
    height: 550px;
    float: left;
    padding: 20px;
    margin: 15px;
    opacity: 0.9;
    backdrop-filter: blur(5px);
    /* Animation attributes */
    animation-name: turn-animation;
    animation-duration: 6000ms; /* length of one animation cycle*/
    animation-iteration-count: infinite; /* repeats forever */
    transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1); /* ease-in-out */
    z-index: 1;
    overflow: hidden;
}


/* Animation keyframes */
@keyframes turn-animation {
    0%, 100% {
        /*Card position at start and end */
        transform: rotate3d(-10, 1, 0, 10deg);
    }
    /* Experiment with these numbers at 50% -> */
    50% {
        transform: rotate3d(0, 1, -0.2, 45deg);
    }
}

/* THE COLORED CARDS */
.login-signup-animation .top_card {
}

.login-signup-animation .middle_card {
    background-image: linear-gradient(-70deg, #505, #f68);
    color: #000;
    text-shadow: -2px -2px 3px rgba(255, 255, 255, 0.7);
}

.login-signup-animation .bottom_card {
    background-image: linear-gradient(-70deg, #03a, #c6f);
    font-size: 1.3em;
    text-shadow: 1px 3px 3px rgba(255, 255, 255, 0.7);
}

/* ALL CARD HOVER */
.login-signup-animation .card:hover {
    color: #223;
}

.login-signup-animation .top_card:hover {
}

.login-signup-animation .middle_card:hover {
    background-image: linear-gradient(-70deg, #90c, #5f9);
}

.login-signup-animation .bottom_card:hover {
    background-image: linear-gradient(-70deg, #90c, #5f9);
}

.login-signup-animation .signo {
    margin: auto;
    color: #a8a;
    position: absolute;
    bottom: 10px;
    right: 14px;
}

    .login-signup-animation .signo:hover {
        color: #fff;
        text-decoration: underline;
    }

.animate-logo {
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: auto;
    z-index: 3;
}

    .animate-logo img {
        width: 148px;
        filter: drop-shadow(2px 2px 0px #fff);
    }

    .animate-logo span {
        font-size: 30px;
        font-weight: 900;
        color: #fff;
    }

select {
    color: #382364;
    width: 100%;
    padding: 14.5px 10px;
    border-radius: 10px;
}

#background-container {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    z-index: 0;
    border-radius: 30px;
    padding: 22px;
}

    #background-container:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        background: #00000040;
        width: 100%;
        height: 100%;
        bottom: 0;
        margin: auto;
        z-index: 2;
        border-radius: 30px
    }

.button-animation {
    position: relative;
    padding: 15px 30px;
    overflow: hidden;
    outline: 0;
    font-weight: bold;
    letter-spacing: 1px;
    background: var(--main-color);
    color: #ffffff !important;
    display: block;
    width: 100%;
    outline: 0;
    border: 0;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
}

    .button-animation span {
        position: absolute;
        display: none;
    }

        .button-animation span:nth-child(1) {
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #ffffff);
            animation: btn-anim1 1s linear infinite;
        }

@keyframes btn-anim1 {
    0% {
        left: -100%;
    }

    50%, 100% {
        left: 100%;
    }
}

.button-animation span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #ffffff);
    animation: btn-anim2 1s linear infinite;
    animation-delay: 0.25s;
}

@keyframes btn-anim2 {
    0% {
        top: -100%;
    }

    50%, 100% {
        top: 100%;
    }
}

.button-animation span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #ffffff);
    animation: btn-anim3 1s linear infinite;
    animation-delay: 0.5s;
}

@keyframes btn-anim3 {
    0% {
        right: -100%;
    }

    50%, 100% {
        right: 100%;
    }
}

.button-animation span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #ff8900);
    animation: btn-anim4 1s linear infinite;
    animation-delay: 0.75s;
}

@keyframes btn-anim4 {
    0% {
        bottom: -100%;
    }

    50%, 100% {
        bottom: 100%;
    }
}

.button-animation:hover {
    color: #fff;
    /* border-radius: 5px; */
}

.get-sponsor-btn {
    cursor: pointer;
    background: #008505;
    padding: 0px 5px;
    display: inline-block;
    border-radius: 3px;
    color: #fff;
    font-size: 12px;
}

.forget-register {
    margin-top: 15px;
}

#lgsec {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 35px;
    height: 35px;
    border: 1px solid #4f605e;
    display: grid;
    place-content: center;
    border-radius: 47px;
    text-decoration: none;
    color: #ffffff !important;
    font-size: 15px;
    background: #4CAF50;
}

.register-label {
    padding: 0 !important;
}

    .register-label label {
        display: flex;
        align-items: center;
    }

.modal-title {
    /* color: #fff; */
    font-size: 16px;
}

.modal-header {
    border-color: #cccccc1a;
}

.modal-content {
    /* background: #221e1e; */
    color: black;
    border: 1px solid #cccccc1a;
}

.modal-header .btn-close {
    filter: invert(1);
    font-size: 13px;
}

.modal-body {
}

div.connectmodal .modal-header {
    font-size: 28px;
    background: linear-gradient(90deg, rgba(215,42,106,1), rgba(114,15,235,1));
    color: #fff;
    border-radius: 30px 30px 0 0;
}

div.connectmodal .modal-content.login-Modal {
    border-radius: 30px;
}

div.connectmodal button.close {
    color: #fff;
    opacity: 1;
}

div.connectmodal .modal-body {
    padding: 45px 15px;
}

.connectwalletclass {
    display: block;
    text-align: center;
    cursor: pointer;
}

    .connectwalletclass img {
        width: 80px;
    }

    .connectwalletclass h5 {
        margin-top: 5px;
    }
/*Wallet Connect Wallet*/
.bg-animation {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
    overflow: hidden;
}

    .bg-animation::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(#000, #f7931a, #000);
        animation: animate 5s linear infinite;
    }

@keyframes animate {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

.bg-animation span {
    position: relative;
    display: block;
    width: calc(6.25vw - 2px);
    height: calc(6.25vw - 2px);
    background: #181818;
    z-index: 2;
    transition: 1.5s;
}

    .bg-animation span:hover {
        background: #f7931a;
        transition: 0s;
    }

.login-5 .form-section p.tagline {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.02em;
    margin-bottom: 0px;
    color: #6c757d;
}

@media (max-width: 900px) {
    .bg-animation span {
        width: calc(10vw - 2px);
        height: calc(10vw - 2px);
    }
}

@media (max-width: 600px) {
    .bg-animation span {
        width: calc(20vw - 2px);
        height: calc(20vw - 2px);
    }
}

@media (max-width: 768px) {
    .left-parent {
        display: none;
    }

    .register_address .copy_icon {
        top: 8px;
    }

    .register_address {
        padding-top: 24px;
    }

    .login-5 .form-section p a {
        /* display: block; */
    }

    .form_parent {
        grid-template-columns: 1fr;
        height: auto;
        overflow-y: auto;
        place-content: center;
        background: #fff;
    }

    .login-bg {
        display: none;
    }
}
