@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&family=Rajdhani:wght@300;400;500;600;700&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');



/* variables */
:root {
    --primary-color: rgb(0, 143, 156);
    --secondary-color: rgb(247, 144, 49);
    --field-text-color: rgb(62, 63, 94);
    --bg-color: rgb(255, 255, 255);
    --heading-color: rgb(255, 255, 255);
    --text-color: rgb(48, 47, 69);
    --label-color: rgb(175, 176, 192);
    --border-color: rgb(222, 222, 234);

}

body {
    font-family: 'Rajdhani', sans-serif;
    width: 100%;
    position: relative;
    min-height: 100vh;
}

.ls-bg {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    top: 0;
    overflow: hidden;
    left: 0;
    background-color: rgb(51, 49, 48);

}

.ls-bg-inner {
    object-fit: cover;
    width: 84%;
    height: 100%;
    object-position: 100%;
}

video.ls-bg-inner {
    opacity: 0.5;
}


main {
    position: relative;
    /*z-index: 10000;*/
    min-height: 100vh;
}

    main::after {
        content: "";
        position: absolute;
        height: 100%;
        top: 0;
        right: -4%;
        /*width: 45%;*/
        z-index: 0;
        clip-path: circle(70% at 80% 50%);
        /* background-color: rgb(121 143 244 / 39%); */
        background-image: url(/assets/img/pages/auth-right-bottom.png);
        height: 100vh;
        background-repeat: no-repeat;
        /* right: 0; */
        background-position: right;
        background-size: cover;
    }

.wrapper {
    /*padding: 40px 0px 120px 120px;*/
    width: 85%;
    height: auto;

}

.main-inner {
    position: relative;
    height: 100%;
}


.logo {
    display: flex;
    align-items: center;
    height: auto;
    position: relative;
    z-index: 10;
}

.logo-icon {
    width: auto;
}

.logo-icon img {
    width: 100%;
}

.logo-text {
    font-size: 37px;
    font-family: "Oswald";
    color: var(--heading-color);
    font-weight: bold;
    margin-left: 8px;
}

.p-relate {
    position: relative;
    height: 100%;
}



.side-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28%;

}

.side-text * {
    margin: 0;
}

.side-text span {
    font-size: 24px;
    color: var(--heading-color);
    text-transform: uppercase;
    display: block;
    line-height: 0.5;
}

.main-heading {
    font-size: 104px;
    font-family: "Titillium Web";
    color: rgb(0 71 118 / 14%);
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1;
}
.side-text p {
    font-size: 18px;
    color: var(--heading-color);
}

.logSign {
    display: flex;
    width: 80%;
    height: auto;
    border: solid 1px var(--bg-color);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 50px;
}

.logSign button {
    background-color: transparent;
    min-width: 50%;
    height: 54px;
    border: 0;
    transition: 0.4s;
    font-size: 20px;
    color: var(--heading-color);
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.logSign button.active {
    color: var(--field-text-color);
}

.logSign button.active:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    color: var(--field-text-color);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.form {
    border-radius: 12px;
    background-color: var(--bg-color);
    box-shadow: 0px 0px 60px 0px rgba(94, 92, 154, 0.12);
    margin-left: auto;
    min-height: 500px;
    padding: 40px;
    width: 65%;
    position: relative;
    z-index: 100000;
}
    .form.login-form-main {
        margin-top: 25px;
    }
.form-title {
    font-size: 26px;
    color: var(--text-color);
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
}
.login {
    padding: 30px;
    margin-top: 80px;
}
.input-field {
    margin-bottom: 30px;
    transition: 0.4s;
    position: relative;
    display: grid;
    align-items: center;
    opacity: 1;
    width: 100%;
    height: 52px;
    min-height: 52px;
    background-color: var(--bg-color);
}

.input-field input {
    border: solid 1px var(--border-color);
    border-radius: 12px;
    width: 100%;
    transition: 0.4s;
    height: 100%;
    padding-left: 20px;
    font-size: 20px;
    color: var(--field-text-color);
    font-weight: bold;

}

.input-field input:focus {
    outline: 0;
    border-color: var(--secondary-color);
}

.input-field label {
    font-size: 20px;
    color: var(--label-color);
    position: absolute;
    left: 17px;
    transition: 0.4s;
    pointer-events: none;
    width: max-content;
    padding: 0 3px;
    background-color: var(--bg-color);

}

.input-field:focus-within label {
    transform: translatey(-24px);
    font-size: 15px !important;

}

.input-field input:valid+label {
    transform: translatey(-24px);
    font-size: 15px;
}

.input-field input:invalid+label {
    font-size: 20px;
}

.rememberme {
    display: flex;
    align-content: center;
    height: auto;
    margin-bottom: 30px;
}

.rememberme label {
    font-size: 15px;
    color: var(--field-text-color);
    font-weight: bold;
    margin-left: 10px;
}

.rememberme input[type=checkbox] {
    -webkit-appearance: none;
    border-radius: 6px;
    background-color: rgb(35, 210, 226);
    width: 22px;
    height: 22px;
    position: relative;
    cursor: pointer;

}

.rememberme input[type=checkbox]::before {
    content: "";
    font-family: 'Titillium Web';
    font-weight: 900;
    font-size: 18px;
    color: var(--heading-color);
    width: 100%;
    transition: 0.4s;
    height: 100%;
    position: absolute;
    text-align: center;
    line-height: 22px;

}

.rememberme input[type=checkbox]:checked::before {
    content: '\f00c';
    font-family: "Font Awesome 6 free";
    font-size: 16px;
}

.forget {
    font-size: 15px;
    color: var(--label-color);
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 30px;
}

.forget:hover {
    color: var(--secondary-color);
}

.login-btn button {
    border-radius: 12px;
    background-color: rgb(247, 144, 49);
    width: 100%;
    transition: 0.4s;
    height: 54px;
    font-size: 20px;
    margin-bottom: 40px;
    border: 0;
    position: relative;
    color: var(--heading-color);
    font-weight: bold;
    overflow: hidden;
}

.login-btn .signup {
    background-color: var(--primary-color);
}

.login-btn button::before {
    content: "GO!";
    font-size: 20px;
    font-weight: bold;
    background-color:rgb(0 71 118);
    color: var(--heading-color);
    line-height: 54px;
    display: block;
    transition: 0.4s;
    height: 100%;
    position: absolute;
    top: 0;
    left: -65px;
    width: 65px;
}

.login-btn button:hover::before {
    left: 0;
}

.login-btn button:hover {
    padding-left: 65px;
}


.divide-heading {

    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.divide-heading span {
    font-size: 15px;
    color: var(--field-text-color);
    font-weight: bold;
    text-align: center;
    background-color: var(--bg-color);
    padding: 0 20px;
    width: max-content;
    margin: 0 auto;
    display: block;
}

.divide-heading::after {
    content: "";
    position: absolute;
    width: 100%;
    background-color: rgb(234, 234, 245);
    height: 1px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    top: 10px;
    z-index: -1;
}

.social-signup {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    justify-content: center;
}

.social-signup a {
    border-radius: 10px;
    background-color: var(--field-text-color);
    width: 40px;
    height: 40px;
    display: grid;
    justify-content: center;
    align-content: center;
    text-decoration: none;
    margin: 0 7px;
}

.social-signup a.facebook {

    background-color: rgb(55, 99, 210);
}

.social-signup a.twitter {
    background-color: rgb(26, 188, 255);
}

.social-signup a.twitch {
    background-color: rgb(123, 93, 250);
}

.social-signup a.youtube {
    background-color: rgb(253, 67, 79);
}

.social-signup a i {
    color: var(--heading-color);
    font-size: 15px;

}

.register-text {
    font-size: 14px;
    color: var(--field-text-color);
}

.register-text a {
    color: rgb(35, 210, 226);
    text-decoration: none;
}



main .signup-form {
    display: none;
}














.thankyou-page .logo {
    justify-content: center;
    margin-top: 60px;
}

.thankyou-page .logo-icon {
    width: 55px;
    margin-right: 10px;
}

.thankyou-page .logo .logo-icon img {
    width: 100%;
}

.thankyou-page .logo-text {
    font-size: 65px;
}

.thankyou-page .main-inner {
    background-image: url(../images/thankyou-bg.png) !important;
    background-color: var(--text-color-hover);

}

.thankyou-page article {
    text-align: center;
    margin-top: 80px;
}

.thankyou-page article h1 {
    font-size: 75px;
    font-weight: bold;
    text-transform: uppercase;
}

.thankyou-page article h1 span {
    display: block;
    font-size: 80px;
    font-weight: 900;
    color: var(--primary-color);
}

.thankyou-page article span {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 500;
}

.thankyou-page article p {
    font-size: 18px;
    font-family: "Myriad Pro";
    color: var(--secondary--text-color);
    margin: 0 auto;
    margin-top: 45px;
    width: 39%;
}

.social-media {
    text-align: center;
    margin: 40px auto;
    background-color: var(--text-color-hover);
    width: 30%;
    padding: 6px 10px;
}

.social-media a {
    border: solid 1px rgb(244, 244, 244);
    border-radius: 5px;
    background-color: transparent;
    color: var(--secondary--text-color);
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
}

.social-media a i {
    margin-right: 10px;
    font-size: 20px;
}

.back-home {
    width: 188px;
    height: 63px;
    margin: 0 auto;
}

.back-home a {
    background-color: var(--primary-color);
    border-radius: 50px;
    color: var(--text-color-hover);
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
    text-align: center;
    line-height: 63px;
    font-size: 17px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    border: 0;

}

#sub img {
    width: 60px;
}

.highlight {
    border-top: solid 3px var(--primary-color) !important;
    border-bottom: solid 3px var(--primary-color) !important;

}

#error {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 20;
}
container-login

.invalid {
    border: solid 2px #ff4444 !important;
    position: relative;
}


/********login-screen***********/
body{

}
.container-login {
    margin-left: 200px;
    margin-top: 10px;
}
.screen {
    background: linear-gradient(90deg, #e88630, #f2bc8c);
    position: relative;
    height: 74vh;
    width: 30%;
    margin-top: 0;
}
.logo-dashboard img {
    /* width: 150px; */
    height: 150px;
}
.screen__content {
    z-index: 1;
    position: relative;
    height: 100%;
}

.screen__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
}

.screen__background__shape {
    transform: rotate(45deg);
    position: absolute;
}

.screen__background__shape1 {
    height: 520px;
    width: 520px;
    background: #FFF;
    top: -50px;
    right: 120px;
    border-radius: 0 72px 0 0;
}

.screen__background__shape2 {
    height: 220px;
    width: 220px;
    background: #eda15e;
    top: -172px;
    right: 0;
    border-radius: 32px;
}

.screen__background__shape3 {
    height: 540px;
    width: 190px;
    background: linear-gradient(270deg, #e6791a, #e8863059);
    top: -24px;
    right: 0;
    border-radius: 32px;
}

.screen__background__shape4 {
    height: 400px;
    width: 200px;
    background: #eda15e;
    top: 420px;
    right: 50px;
    border-radius: 60px;
}

.login {
    padding: 30px;
    margin-top: 80%;
    padding: 30px;
    margin-top: 20%;
}

.login__field {
    padding: 15px 0px;
    position: relative;
}

.login__icon {
    position: absolute;
    top: 30px;
    color: #e6791a;
}

.login__input {
    border: none;
    border-bottom: 2px solid #757b82;
    background: none;
    padding: 10px;
    padding-left: 30px;
    font-weight: 700;
    width: 85%;
    transition: .2s;
    font-size: 18px;
}

    .login__input:active,
    .login__input:focus,
    .login__input:hover {
        outline: none;
        border-bottom-color: #ffd1a8;
    }

.login__submit {
    background: #fff;
    font-size: 14px;
    margin-top: 30px;
    padding: 16px 20px;
    border-radius: 26px;
    border: 1px solid #f2bc8c;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-items: center;
    width: 34%;
    color: #e67c20;
    box-shadow: 0px 2px 2px #f57300;
    cursor: pointer;
    transition: .2s;
    position: absolute;
    bottom: 25%;
    right: 10%;
}
.login-rememberme {
    display: flex;
    margin-top: 20px;
}

    .login__submit:active,
    .login__submit:focus,
    .login__submit:hover {
        border-color: #ff7500;
        outline: none;
    }

.button__icon {
    font-size: 24px;
    margin-left: auto;
    color: #e6791a;
}

.login-rememberme {
    display: flex;
}

    .login-rememberme label {
        font-size: 15px;
        color: #757575;
        font-weight: bold;
        margin-left: 10px;
    }

    .login-rememberme input[type=checkbox] {
        -webkit-appearance: none;
        border-radius: 6px;
        background-color: rgb(0 71 118 / 73%);
        width: 22px;
        height: 22px;
        position: relative;
        cursor: pointer;
    }

        .login-rememberme input[type=checkbox]::before {
            content: "";
            font-family: 'Titillium Web';
            font-weight: 900;
            font-size: 18px;
            color: var(--heading-color);
            width: 100%;
            transition: 0.4s;
            height: 100%;
            position: absolute;
            text-align: center;
            line-height: 22px;
        }

        .login-rememberme input[type=checkbox]:checked::before {
            content: '\f00c';
            font-family: "Font Awesome 6 free";
            font-size: 16px;
        }
.screen__content h4 {
    padding: 50px 50px 0px 30px;
    font-weight: 600;
}
.ls-bg-login {
    position: absolute;
    z-index: 0;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ls-bg-login-inner {
    object-fit: cover;
    width: 151%;
    height: 100%;
    object-position: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.password_hide-show {
    bottom: 32% !important;
    right: 15% !important;
}
.container-loginpage {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden !important;
    height: 100vh;
}
.loginbg {
    position: absolute;
    max-width: 100%;
    height: auto;
}
body {
    background-image: url('/assets//img/bg-1.png');
   background-repeat:no-repeat;
   background-size: cover;
}
.logo-dashboard {
    position: absolute;
    z-index: 1;
    top: -8%;
    left: 15%;
}
