@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #212130;
    padding: 30px;
}

.container {
    position: relative;
    max-width: 850px;
    width: 100%;
    background: #fff;
    padding: 40px 30px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    perspective: 2700px;
}

.forgotPassContainer{
    max-width: 425px;
    background-color: #212130;
    border-radius: 10px;
}

.forgotPassContainer .title h3{
    position: relative;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
}

.forgotPassContainer .title h3:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 25px;
    background: #212130;
}

.forgotPassContainer .form-content .login-form, .form-content .signup-form {
    width: 100%;
}

.container .cover {
    position: absolute;
    background-color: #212130;
    top: 0;
    left: 50%;
    height: 100%;
    width: 50%;
    z-index: 98;
    transition: all 1s ease;
    transform-origin: left;
    transform-style: preserve-3d;
}

.container #flip:checked~.cover {
    transform: rotateY(-180deg);
}

.container .cover .front,
.container .cover .back {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.cover .back {
    transform: rotateY(180deg);
    backface-visibility: hidden;
}

.container .cover::before,
.container .cover::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: #212130;
    opacity: 0.2;
    z-index: 12;
}

.container .cover::after {
    opacity: 0.2;
    transform: rotateY(180deg);
    backface-visibility: hidden;
}

.container .cover img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 10;
}

.container .cover .text {
    position: absolute;
    z-index: 130;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.show-password i {
    font-size: 1.1rem;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #222;
    cursor: pointer;
}

.show-password2 i {
    font-size: 1.1rem;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #222;
    cursor: pointer;
}

.show-confrimPassword i {
    font-size: 1.1rem;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #222;
    cursor: pointer;
}

.cover .text .text-1,
.cover .text .text-2 {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.cover .text .text-2 {
    font-size: 15px;
    font-weight: 500;
}

.container .forms {
    height: 100%;
    width: 100%;
    background: #fff;
}

.container .form-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-content .login-form,
.form-content .signup-form {
    width: calc(100% / 2 - 25px);
}

.forms .form-content .title {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.forms .form-content .title h4{
    position: relative;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    bottom: -4rem;
}

.forms .logo img{
    border-radius: .5rem;
}

.forms .form-content .title h4:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 25px;
    background: #fff;
}
.login-title h4:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 25px;
    background: #212130;
    top: 2rem;
}
.forms .signup-form .title h4:before {
    width: 20px;
}

.forms .form-content .input-boxes {
    margin-top: 30px;
}

.forms .form-content .input-box {
    display: flex;
    align-items: center;
    height: 50px;
    width: 100%;
    margin: 10px 0;
    position: relative;
    color: #fff;
}

.form-content .input-box input, .form-content .input-box select {
    height: 100%;
    width: 100%;
    outline: none;
    border: none;
    padding: 0 30px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    background-color: transparent;
    color: #fff;
}

.form-content .input-box input:focus,
.form-content .input-box input:valid, 
.form-content .input-box select:focus,
.form-content .input-box select:valid {
    border-color: #212130;
}

.form-content .input-box i {
    position: absolute;
    color: #fff;
    font-size: 17px;
}

.forms .form-content .text {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.forms .form-content .text a {
    text-decoration: none;
    color: #d3bd52;
}

.forms .form-content .text a:hover {
    text-decoration: underline;
}

.forms .form-content .button {
    color: #fff;
    margin-top: 40px;
}

.forms .form-content .button input {
    color: #fff;
    background-color: #d3bd52;
    border-radius: 6px;
    padding: 0;
    cursor: pointer;
    transition: all 0.4s ease;
}

.forms .form-content .button input:hover {
    background: #212130;
}

.forms .form-content label {
    color: #d3bd52;
    cursor: pointer;
}

.forms .form-content label:hover {
    text-decoration: underline;
}

.forms .form-content .login-text,
.forms .form-content .sign-up-text {
    text-align: center;
    margin-top: 25px;
}

.container #flip {
    display: none;
}

@media (max-width: 730px) {
    .container .cover {
        display: none;
    }

    .forms .form-content .title {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .forms .form-content .title h4 {
       
        bottom: 1rem;
    }


    .form-content .login-form,
    .form-content .signup-form {
        width: 100%;
    }

    .form-content .signup-form {
        display: none;
    }

    .container #flip:checked~.forms .signup-form {
        display: block;
    }

    .container #flip:checked~.forms .login-form {
        display: none;
    }
}

/* additional css (suraj) */

body{
    background-color: #171622;
}
.containersection{
    background-color: #212130;
}
.forms{
    background-color: #212130;
}
.form-content{
    background-color: #212130;

}
.bsebackgroundig {
    position: absolute;
     background-color: #212130;
    top: 110px !important;
    left: 0px !important;
    height: 425px !important;
    width: 100% !important;
    object-fit: cover;
    /* transform: rotate(-4deg); */
}
.bseLogo{
    width: 100px ;
    height: 100px;
}
.cover .imagecontainer{
    overflow: hidden;
}
.forms .form-content .button input:hover{
    background-color: #b17538;
}

@media (min-width : 768px){
    .lg-login-title{
        position: relative;
        display: flex;
        flex-direction: column;
     
    }
     .lg-logo-ig{
        position: relative;
        top: -93px;
        left: -19px;
     }
}


.otpModal{
    position: absolute;
    height: 100vh;
    width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    transition: .5s all;
}
.otpModal::before{
    content: "";
    background-color: #000;
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: .5;
}

.otpModal .otpModalContent{
    padding: 2rem;
    border-radius: 5px;
    background: #212130;
    height: 200px;
    width: 400px;
    position: relative;
    z-index: 50;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.otpModal .otpModalContent form{
    width: 100%;
}

.otpModal .otpModalContent .otpLabel{
    margin-bottom: 1rem;
}
.otpModal .otpModalContent .otpLabel label{
    color: #d3bd52;
    cursor: pointer;
    font-size: 1.5rem;
}


.otpModal .otpModalContent .otpInput input{
    background-color: #171622;
    border: none;
    color: #fff;
    border-bottom: 2px soldi #b17538;
    margin-bottom: 1rem;
    width: 100%;
    padding: 1rem;
    height: 3rem;
}

.otpModal .otpModalContent .otpInput input:focus{
    border: none;
    outline: none;
}

.otpModal .otpModalContent .otpInput input:active{
    border: none;
    outline: none;
}

.otpModal .otpModalContent .otpInputBtn input{
    color: #000;
    background-color: #d3bd52;
    border-radius: 6px;
    font-size: 1.3rem;
    width: 100%;
    padding: .3rem 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
}
.closeOtpModal i{
    color: #fff;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
}

/* Register Successfully Page CSS Start */
#card {
    position: relative;
    width: 420px;
    display: block;
    margin: auto;
    text-align: center;
}

#upper-side {
    padding: 2em;
    background-color: #000;
    display: block;
    color: #fff;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}
.success-check img{
    width: 4rem;
}
#status {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1em;
    margin-top: -.2em;
    margin-bottom: 0;
    color: #fbe159;
}

#lower-side {
    padding: 2em 2em 2em 2em;
    background: #fff;
    display: block;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

#message {
    margin-top: -.5em;
    color: #757575;
    font-size: 4vw;
}

#contBtn {
    position: relative;
    text-decoration: none;
    background: #f7931a;
    color: #fff;
    margin: auto;
    padding: 8px 16px;
    box-shadow: 0px 15px 30px rgba(50, 50, 50, 0.21);
    border-radius: 25px;
    transition: all .4s ease;
}

#contBtn:hover {
    -webkit-box-shadow: 0px 15px 30px rgba(50, 50, 50, 0.41);
    -moz-box-shadow: 0px 15px 30px rgba(50, 50, 50, 0.41);
    box-shadow: 0px 15px 30px rgba(50, 50, 50, 0.41);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.userInfo {
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
}

.userInfo p{
    text-transform: uppercase;
    color: #757575;
}

.userInfo span {
    font-weight: 500;
}

.userInfo .loginId {
    flex-basis: 100%;
    margin-bottom: 1rem;
}

.userInfo .date {
    flex-basis: 100%;
    margin-bottom: 1rem;
}

.userInfo .sponsorId {
    flex-basis: 100%;
    margin-bottom: 1rem;
}

.userInfo .country {
    flex-basis: 100%;
    margin-bottom: 1rem;
}

.websiteLink{
    margin-top: 2rem;
}
.websiteLink a{
    text-decoration: none;
    color: #757575;
}

.coin-flip {
    width: 3.5rem;
    height: 3.5rem;
    transform-style: preserve-3d;
    position: absolute;
    bottom: -4rem;
}

.flipanimation1 {
    right: 22rem;
    animation: fly1 3s ease-in-out 0s infinite alternate;
}

.flipanimation2 {
    right: 20rem;
    animation: fly1 5s ease-in-out 0s infinite alternate;
}

.flipanimation3 {
    right: 18rem;
    animation: fly1 4.5s ease-in-out 0s infinite alternate;
}

.flipanimation4 {
    right: 16rem;
    animation: fly1 4s ease-in-out 0s infinite alternate;
}

.flipanimation5 {
    right: 14rem;
    animation: fly1 3.5s ease-in-out 0s infinite alternate;
}

.flipanimation6 {
    right: 12rem;
    animation: fly1 3s ease-in-out 0s infinite alternate;
}

.flipanimation7 {
    right: 10rem;
    animation: fly1 5s ease-in-out 0s infinite alternate;
}

.flipanimation8 {
    right: 8rem;
    animation: fly1 4.5s ease-in-out 0s infinite alternate;
}

.flipanimation9 {
    right: 6rem;
    animation: fly1 4s ease-in-out 0s infinite alternate;
}

.flipanimation10 {
    right: 4rem;
    animation: fly1 3.5s ease-in-out 0s infinite alternate;
}

.flipanimation11 {
    right: 2rem;
}

.coin-flip img {
    width: 3.5rem;
}

.coin-heads,
.coin-tails {
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    clip-path: circle(46%);
}

.coin-heads {
    animation: flip-head 2s linear 0s infinite alternate;
}

.coin-tails {
    animation: flip-tail 2s linear 0s infinite alternate;
}

@keyframes fly1 {
    0% {
        top: 100%;
    }

    100% {
        top: -10%;
    }
}

@keyframes flip-head {

    0%,
    100% {
        transform: rotateX(0deg);
    }

    50% {
        transform: rotateX(180deg);
    }
}

@keyframes flip-tail {

    0%,
    100% {
        transform: rotateX(180deg);
    }

    50% {
        transform: rotateX(0deg);
    }
}

@media only screen and (max-width: 767px) {
    body {
        min-height: 90vh;
    }

    #lower-side {
        padding: 1em;
    }

    .userInfo p {
        font-size: 3.5vw;
    }
}

/* Register Successfully Page CSS End */
