@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;--primary-colo300;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);

}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    width: 100%;
    position: relative;
    min-height: 100vh;
}
.login-header {margin: 0 0 10px 0;}
.ls-bg {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    top: 0;
    overflow: hidden;
    left: 0;

}

.ls-bg-inner {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: 50% 50%;
    background-color: rgb(51, 49, 48);
}

.ls-bg:before {
    content: '';
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 100;
}
main {
    position: relative;
    z-index: 10000;
    min-height: 100vh;
    /* background-color: rgba(209,228,242, 0.3); */
}

.wrapper {
    padding: 20px 20px 0px 20px !important;
    width: 100%;
    height: auto;
    
}

.main-inner {
    position: relative;
    height: 100%;
}


.logo {
    display: flex;
    align-items: center;
    height: auto;
    position: relative;
    z-index: 10;
    gap: 50px;
}

.logo-icon {
    width: auto;
}

.logo-icon img {
    width: 100%;
}

.logo-text {
    font-size: 37px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    margin-right: 8px;
    padding-right: 8px;
}

.p-relate {
    position: relative;
    height: 100%;
}



.side-text {
    position: relative;
    margin-top: 50px;
    left: 0;
    width: 100% !important;

}

.side-text * {
    margin: 0;
}

.side-text span {
    font-size: 24px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    display: block;
    line-height: 0.5;
}

.login-heading {
    font-size: 45px;
    /* font-family: "Titillium Web"; */
    /* text-transform: uppercase; */
    font-weight: 600;
    line-height: 1;
    color: rgb(20, 138, 157);
}

.side-text p {
    font-size: 18px;
    color: rgb(255, 255, 255);
}

.logSign {
    display: flex;
    width: 80%;
    height: auto;
    border: solid 1px rgb(255, 255, 255);
    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: rgb(255, 255, 255);
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.logSign button.active {
    color: rgb(62, 63, 94);
}

.logSign button.active:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    color: rgb(62, 63, 94);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.form {
    border-radius: 5px;
    background-color: rgb(20, 138, 157);
    box-shadow: 0px 0px 60px 0px rgba(94, 92, 154, 0.12);
    margin: auto;
    /* min-height: 350px; */
    padding: 50px 40px;
    max-width: 350px !important;
    width: 100%;
    position: relative;
    z-index: 100000;
    margin-top: 20px;
}

.form-title {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.sub-title { text-align: center;}

.form-group {
    margin-bottom: 20px;
    transition: 0.4s;
    position: relative;
    display: grid;
    align-items: center;
    /* opacity: 0; */
    width: 100%;
    /* height: 52px;
    min-height: 52px; */
}

.form-group .form-control {
    border: 1px solid rgb(62, 63, 94);
    border-radius: 5px !important;
    width: 100%;
    transition: 0.4s;
    line-height: 1.5;
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    height: calc(1.8125rem + 2px);
    /* color: #495057; */
}

.form-group .form-control:focus {
    outline: 0;
    border-color: #fff;
}

.form-group label {
    font-size: 20px;
    color: #fff;
    position: absolute;
    left: 17px;
    transition: 0.4s;
    pointer-events: none;
    width: max-content;
    padding: 0 3px;
}

.input-field:focus-within label {
    transform: translatey(-24px);
    font-size: 15px !important;

}

.form-group .form-control:valid+label {
    transform: translatey(-24px);
    font-size: 15px;
}

.form-group .form-control:invalid+label {
    font-size: 20px;
}

.login-btn button {
    border-radius: 5px;
    background-color: rgb(62, 63, 94);;
    width: 100%;
    transition: 0.4s;
    height: 35px;
    font-size: 14px;
    margin-bottom: 0px;
    border: 1px solid rgb(62, 63, 94);
    position: relative;
    color: #fff;
    font-weight: 600;
    overflow: hidden;
    text-transform: uppercase;
}
.login-btn button:hover {
    color: rgb(62, 63, 94);
    background-color: #fff;
}

.login-btn .signup {
    background-color: rgb(0, 143, 156);
}

.login-btn button::before {
    content: "GO!";
    font-size: 14px;
    font-weight: 500;
    background-color: rgb(62, 63, 94);
    color: rgb(255, 255, 255);
    line-height: 36px;
    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: rgb(62, 63, 94);
    font-weight: bold;
    text-align: center;
    background-color: rgb(255, 255, 255);
    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: rgb(62, 63, 94);
    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: rgb(255, 255, 255);
    font-size: 15px;

}

.register-text {
    font-size: 14px;
    color: rgb(62, 63, 94);
}

.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: rgb(0, 143, 156);
}

.thankyou-page article span {
    font-size: 20px;
    color: rgb(0, 143, 156);
    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: rgb(0, 143, 156);
    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 rgb(0, 143, 156) !important;
    border-bottom: solid 3px rgb(0, 143, 156) !important;

}

#error {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 20;
}

.invalid {
    border: solid 2px #ff4444 !important;
    position: relative;
}

.navbar,
footer {
    display: none;
}

.input-group {
    position: relative;
}

.input-group i {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1000;
    color: #666;
    cursor: pointer;
}
.bottom-footer {
    position: fixed;
    color: #ccc;
    bottom: 5px;
    font-size: 10px;
    font-weight: 400;
    left: 10px;
}
.bottom-footer a:hover {
    text-decoration: none;
    color: #fff;
}

.login-image {
    padding: 0px 150px 10px 50px;
}
.login-image img { max-width: 430px;}

@media (min-width: 1400px) {
    .login-image { padding-left: 100px;}
    .login-image img { max-width: 100%;}
    .form {
        width: 100%;
        max-width: 550px !important;
    }
    .login-area {
        margin-top: 70px;
    }
}