@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap');
/*custom font*/
:root {
    --primary_bg: #FF9800;
    --primary_txt: #FF9800;
    --black_txt: #212529;
}

.f_12 {
    font-size: 12px;
}

.f_14 {
    font-size: 14px;
}

.bg-gray {
    background: #cccccc !important;
}

.main_txt {
    color: var(--primary_txt);
}
/*universal style*/
p, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0;
    line-height: 1;
}

body {
    min-height: 100vh;
    background: url(../img/bg-black.jpg);
    background-size: cover;
    font-family: "Jost";
    font-size: 14px;
}

/*login-form*/
.login-form {
    position: relative;
    height: auto;
    background: #000000d1;
    border: 8px solid #000;
    box-shadow: inset 0 0 9px 0px #e5b65c;
    border-radius: 30px;
    overflow: hidden;
}

.register-form {
    height: auto;
}
/*center-gap*/
.login-form::after {
    display: block;
    /* content: ""; */
    position: absolute;
    background: rgb(0, 87, 255);
    border-radius: 10px;
    width: 15px;
    top: 35%;
    left: calc(50% - 7.5px);
    height: 260px;
}

.h-100 {
    min-height: 100vh;
    align-content: center;
}

.wrapper {
    padding: 50px 50px;
}

/*testimonial (div-1)*/
.company-testimonial {
    /*box shadow left/top*/
    display: flex;
    flex-flow: column;
    align-items: center;
}

    /*box shadow right/bottom*/
    .company-testimonial::before {
        position: absolute;
        /* content: ""; */
        /* width: 100%; */
        /* height: 100%; */
        /* box-shadow: -45px -45px 45px 0px rgba(0,0,0,0.7) inset; */
        -webkit-box-shadow: -45px -45px 45px 0px rgba(0,0,0,0.7) inset;
        -moz-box-shadow: -45px -45px 45px 0px rgba(0,0,0,0.7) inset;
    }

/*about company*/
.company {
    display: flex;
}

    /*company-logo*/
    .company .company-logo {
        border-radius: 50%;
        background-color: rgb(0, 87, 255);
        width: 50px;
        text-align: center;
        height: 50px;
    }

        .company .company-logo i {
            font-size: 28px;
            color: rgb(255, 255, 255);
            line-height: 50px;
        }

    /*company-name*/
    .company .company-name {
        color: rgb(255,255,255);
        width: 80%;
    }

        .company .company-name h3 {
            font-size: 35px;
        }

        .company .company-name p {
            font-size: 14px;
        }

/*carousel style*/
.carousel {
    position: absolute;
    bottom: 50px;
}

.carousel-caption {
    text-align: start;
    width: 75%;
    position: static;
    padding: 0;
}

/*carousel-indicators*/

.carousel-indicators {
    margin: 0;
    position: absolute;
    right: 45px;
    left: auto;
}

    .carousel-indicators [data-bs-target] {
        transition: 0.3s ease;
        border-radius: 50%;
        background-color: rgb(255, 255, 255);
        width: 14px;
        height: 14px;
        margin-left: 1px;
        margin-right: 1px;
    }

    .carousel-indicators .active {
        background-image: -moz-linear-gradient( -50deg, rgb(62,224,245) 0%, rgb(32,143,210) 100%);
        background-image: -webkit-linear-gradient( -50deg, rgb(62,224,245) 0%, rgb(32,143,210) 100%);
        background-image: -ms-linear-gradient( -50deg, rgb(62,224,245) 0%, rgb(32,143,210) 100%);
        height: 18px;
        width: 18px;
        margin-top: 3px;
    }

/*carousel content*/
.carousel-caption h2 {
    font-size: 32px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    line-height: 1.2;
    margin-left: 15px;
    margin-bottom: 40px;
}

/*author-details*/
.author {
    display: flex;
    align-items: center;
}

/*author img*/
.author-image {
    border-radius: 50%;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    height: 60px;
    width: 60px;
    overflow: hidden;
}

    .author-image img {
        width: 100%;
        object-position: center top;
        height: 90px;
    }

/*author-name*/
.author-name {
    font-family: "jost";
    color: rgb(255,255,255);
    margin-left: 15px;
}

    .author-name h3 {
        font-size: 18px;
        font-weight: bold;
    }

    .author-name p {
        font-size: 14px;
        font-family: "Jost";
        color: rgb(223, 223, 223);
        line-height: 1.3;
    }

/*login-form*/
.login-form-inner {
    position: relative;
    padding: 30px;
    padding-right: 45px;
    width: 100%;
}

    .login-form-inner:before {
        /* display: block; */
        /* content: ""; */
        position: absolute;
        background: rgb(0, 87, 255);
        border-radius: 10px;
        width: 15px;
        top: 35%;
        left: -7.5px;
        height: 260px;
    }
/*login-form cross-sign*/
.cross-sign {
    position: absolute;
    top: -20px;
    right: -30px;
    cursor: pointer;
    border-radius: 50%;
    background-color: rgb(18, 18, 18);
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 85px;
}

    .cross-sign i {
        font-size: 18px;
        color: rgb(255, 255, 255);
        font-weight: bold;
    }

.login-form-inner form {
    /* display: grid; */
    /* align-content: center; */
    /* min-height: 600px; */
}

.form-height-col {
    display: flex;
    align-items: center;
}

/*login-form heading/text*/
.login-form-inner article {
    text-align: center;
    margin-bottom: 30px;
}

    .login-form-inner article .login-h {
        font-weight: bold;
        background: linear-gradient(to right, #edbe47 0%, #ae5501 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: normal;
    }

.login-p {
    font-size: 16px;
    color: #d9d9d9;
    margin-top: 1rem;
    line-height: 1.2;
}

/*login-form input-fields*/
.input-field {
    background-color: rgb(220, 226, 225);
    width: 100%;
    height: 90px;
    align-items: center;
    padding: 20px;
    display: flex;
    position: relative;
}

.form-control::placeholder {
    color: #959090;
}

.parent-focus {
    background-color: rgb(255 237 201);
    transition: 0.5s ease;
}

.input-field i {
    font-size: 30px;
    color: rgb(31, 32, 32);
}

.input-field .input-field-inner {
    padding-left: 15px;
}

.input-field-inner input, .input-field-inner select {
    width: 100%;
    font-size: 16px;
    color: rgb(83, 113, 129);
    background: transparent;
    height: auto;
    border: 0;
}

    .input-field-inner input:focus, .input-field-inner select:focus {
        outline: none;
    }

/*input fields label*/
.input-field-inner label {
    font-size: 16px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    text-transform: capitalize;
}

.valid-signs {
    font-size: 10px;
    border-radius: 30px;
    width: 20px;
    line-height: 20px;
    display: none;
    transition: 0.5s ease;
    height: 20px;
    text-align: center;
    position: absolute;
    right: 15px;
    top: 15px;
}

    .valid-signs.fa-check {
        color: #00C851;
        outline: solid 2px #00C851;
    }

    .valid-signs.fa-exclamation {
        color: #ffbb33;
        outline: solid 2px #ffbb33;
    }

    .valid-signs.fa-xmark {
        color: #ff4444;
        outline: solid 2px #ff4444;
    }

/*remember me/forget text*/
.radio-forget-text {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
    color: rgb(125, 127, 128);
}

    .radio-forget-text label {
        display: flex;
        align-items: center;
        cursor: pointer;
    }

        /*remember me checkbox*/
        .radio-forget-text label input[type=checkbox] {
            -webkit-appearance: none;
            border-radius: 50%;
            cursor: pointer;
            width: 15px;
            height: 15px;
            margin-right: 8px;
            outline: solid 1px rgb(220, 226, 225);
        }

            .radio-forget-text label input[type=checkbox]:checked {
                position: relative;
                background-color: rgb(29, 208, 59);
                outline: none;
            }

                .radio-forget-text label input[type=checkbox]:checked::after {
                    position: absolute;
                    font-family: "Font Awesome 5 Free";
                    font-weight: 900;
                    color: rgb(255,255,255);
                    content: "\f00c";
                    width: 16px;
                    text-align: center;
                    font-size: 9px;
                    top: 1px;
                }

    .radio-forget-text a {
        color: rgb(125, 127, 128);
    }

/*login/sign up button*/
.log-sign-button {
    display: flex;
    justify-content: space-between;
}

    .log-sign-button a, .log-sign-button button {
        border-radius: 28px;
        margin-top: 30px;
        padding: 17px 30px 17px 30px;
        font-size: 14px;
        transition: 0.5s ease;
        font-weight: bold;
        position: relative;
        overflow: hidden;
        border: solid 2px transparent;
        text-transform: uppercase;
    }

        .log-sign-button a:before, .log-sign-button button:before {
            position: absolute;
            content: "";
            width: 100%;
            height: 100%;
            top: 0;
            left: -100%;
            background-image: linear-gradient(90deg, transparent, #fff, transparent);
            transition: 0.5s ease;
        }

        .log-sign-button a:hover:before, .log-sign-button button:hover:before {
            left: 100%;
        }

    .log-sign-button a {
        color: rgb(255, 255, 255) !important;
        text-decoration: none;
    }

    .log-sign-button .login-btn {
        background-color: rgb(0, 87, 255);
    }

    .log-sign-button .signup-btn {
        background-color: rgb(17, 34, 43);
        color: rgb(255, 255, 255);
        cursor: pointer;
    }

/*social sign in button*/
.social-signin {
    position: absolute;
    bottom: 50px;
    width: 100%;
    text-align: center;
    height: auto;
    transition: 0.5s ease;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

    .social-signin > * {
        margin: 0 5px;
        transition: 0.5s ease;
    }

    /*email button*/
    .social-signin .email-signup {
        background-color: rgb(0, 87, 255);
        border-radius: 28px;
        padding: 10px 30px 10px 30px;
        border: solid 2px transparent;
        font-size: 12px;
        color: #fff;
        text-decoration: none;
        font-weight: bold;
    }

        .social-signin .email-signup a {
            color: rgb(255, 255, 255) !important;
            text-decoration: none;
        }

        .social-signin .email-signup:hover {
            background-color: transparent;
            border: solid 2px rgb(0, 87, 255);
            color: rgb(0, 87, 255);
        }

            .social-signin .email-signup:hover a {
                color: rgb(0, 87, 255) !important;
            }

/*icon button*/
.icon-btn {
    border: solid 1px rgb(17, 34, 43);
    border-radius: 50%;
    background-color: transparent;
    width: 36px;
    height: 36px;
    display: inline-block;
    text-align: center;
    line-height: 36px;
}

    .icon-btn:hover {
        border: solid 1px transparent;
        background-color: rgb(17, 34, 43);
    }

        .icon-btn:hover i {
            color: rgb(255, 255, 255);
        }

    .icon-btn i {
        font-size: 14px;
        color: rgb(17, 34, 43);
    }

.show-hide .login {
    display: none !important;
}

.show-hide .signup {
    display: block !important;
}

.login {
    display: block;
}

.signup {
    display: none;
}

.cus_btn {
    border-radius: 28px;
    margin-top: 30px;
    padding: 17px 30px 17px 30px;
    font-size: 14px;
    transition: 0.5s ease;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    border: solid 2px transparent;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    text-decoration: none;
    background-color: rgb(255 168 0);
    display: block;
    cursor: pointer;
}

    .cus_btn:before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: -100%;
        background-image: linear-gradient(90deg, transparent, #fff, transparent);
        transition: 0.5s ease;
    }

    .cus_btn:hover {
        color: #fff;
    }

        .cus_btn:hover:before {
            left: 100%;
        }

.device_span {
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    margin: 10px auto 0;
}

.back_btn_parent {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    /* position: absolute; */
    /* top: 15px; */
    display: flex;
    justify-content: space-between;
    width: 100%;
    left: 0;
    padding: 15px 0;
}

.back_btn {
    cursor: pointer;
    color: #c2c2c2;
}

.all_steps {
    display: none;
}

#step1 {
    display: block;
}

.input_icon {
    position: absolute;
    right: 15px;
    top: 30px;
    cursor: pointer;
    z-index: 10;
}

.menomics-details {
    /* background: #d7d7d7; */
    padding: 10px;
    border: 1px solid #363532
}

    .menomics-details .input-field-inner {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 10px 10px;
    }

    .menomics-details span {
        /*padding: 2px 5px 2px 5px;*/
        border: 1px solid #ffc255;
        /* margin-top: 5px; */
        /* margin-left: 15px; */
        display: inline-block;
        text-align: center;
        color: #fff;
    }

        .menomics-details span:hover {
            background: #000;
            color: #fff;
            cursor: pointer
        }

.secret_logo {
    margin-bottom: 20px;
}

    .secret_logo img {
        width: 200px;
    }

.login-form-inner article.recovery_article {
    text-align: left;
}

.phase_para {
    background: #463c3c;
    color: #fff !important;
    padding: 5px 0;
    border-radius: 4px;
}

.key_copy {
    position: absolute;
    right: 20px;
    cursor: pointer;
    top: 8px;
    color: #fff;
    font-size: 25px;
}

body.login-page-wrp {
    display: flex;
    align-items: center;
}

.company-name img {
    width: 200px;
    margin-bottom: 20px;
}

.wallet-pic-pg img {
    width: 370px;
}

.login-form .login-form-row {
    height: 100%;
}

.height-lf {
    padding: 50px 15px;
    /* height: 100%; */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #33333359;
    position: relative;
    /* overflow: hidden; */
}

span.cirle-shape-1 {
    width: 300px;
    position: absolute;
    top: -50px;
    background: #ffffff;
    height: 300px;
    border-radius: 100%;
    pointer-events: none;
    left: -90px;
    mix-blend-mode: overlay;
    opacity: 0.3;
}

span.cirle-shape-2 {
    width: 300px;
    position: absolute;
    bottom: -195px;
    background: #ffffff;
    height: 300px;
    border-radius: 100%;
    pointer-events: none;
    right: 30px;
    mix-blend-mode: overlay;
    opacity: 0.3;
}

.input-field-n {
    position: relative;
}

    .input-field-n .form-control {
        height: 50px;
        border: 1px solid #ffffff24;
        background: transparent;
        padding-left: 45px;
        padding-right: 45px;
        color: #fff;
    }
        .input-field-n .form-control:focus ~ .show-password {
            color: #ffc107;
        }

.position-flied {
    position: relative;
}

.field-icon-n {
    position: absolute;
    left: 14px;
    top: 15px;
    color: #959090;
    font-size: 20px;
}

    .field-icon-n.show-password-parent {
        left: auto;
        right: 14px;
    }

.input-field-inner-n {
    color: #c2c2c2;
}

.register-form .input-field-n {
    margin-bottom: 10px;
}

.btn {
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.input_icon.show-password {
    font-size: 19px;
    top: unset;
    bottom: 14px;
    color: #606060;
}

.input-field-n .form-control:focus {
    background: #212121;
}

    .input-field-n .form-control:focus ~ .field-icon-n {
        color: #ffc107 !important;
    }

.align-left {
    text-align: left
}

    .align-left ul li {
        text-align: left
    }

.custom-alert {
    text-align: center;
    color: #fff;
    padding: 10px;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    display: none;
}

.custom-alert-error {
    background: #ff624b;
}

.custom-alert-success {
    background: #5fc13e;
}

.btn-warning {
    background: linear-gradient(to right, #edbe47 0%, #ae5501 100%);
    color: #fff;
    border-color: #a37500;
}

.btn-outline-warning {
    border-color: #a37500;
    color: #fff;
}

.show-password {
    cursor: pointer;
}

#showstrongpassword {
    font-size: 12px !important
}
