@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
body {
	font-family: 'Poppins',Helvetica,sans-serif;
    width: 100%;
    position: relative;
    min-height: 100vh;
}

/* Preloader
============================= */
.preloader{
	position: relative;
}
.preloader .preloader-wrapper {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: rgba(255,255,255, 0.50);
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}
.preloader .loader{
	position: absolute;
    width: 300px;
    top: 0;
    padding: 0.65rem 1.5rem;
    background: rgba(61,61,59, 0.65);
    left: calc(50% - 150px);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0.35rem;
    border-bottom-right-radius: 0.35rem;
}
.preloader .loader .progress .progress-bar {
	color: #000000;
}
.preloader .bg-warning{
	background-color: rgba(var(--bs-warning-rgb),var(--bs-bg-opacity)) !important
}
.preloader .progress-bar-striped {
	background-image: linear-gradient(45deg,rgba(255,255,255,.45) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.45) 50%,rgba(255,255,255,.45) 75%,transparent 75%,transparent);
	background-size: var(--bs-progress-height) var(--bs-progress-height);
}
a{text-decoration: none;}
.logo {
    z-index: 10;
    display: flex;
    align-items: center;
    height: auto;
    z-index: 10;
}
.logo-icon {
    width: 30px;
}
.logo-icon img {
    width: 100%;
}
.logo-text {
    font-size: 30px;
    font-weight: bold;
    margin-left: 8px;
}
.logo-text span {
    color: rgb(0, 144, 157);
}
.light-logo{
    color: #fff;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}
.dark-logo {
    display: none;
    color: #1c2437;
}
.logo.dark .dark-logo{
    display: block !important;
}
.logo.dark .light-logo{
    display: none;
}
.ls-bg {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    top: 0;
    overflow: hidden;
    left: 0;
}
.ls-bg::before{
    background-color: #000000;
}
.ls-bg-inner {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: 50% 50%;
    background-color: rgb(51, 49, 48);
}
.ls-bg .bg-overlay{
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0.8;
}
main {
    position: relative;
    z-index: 999;
    min-height: 100vh;
}
main::after {
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
    right: -15%;
    width: 50%;
    z-index: 0;
    clip-path: circle(70% at 80% 50%);
    background-color: rgb(255,255,255);
    background-image: url(../../../images/Layers.png);
}
.wrapper {
    padding: 40px 0px 120px 120px;
    width: 85%;
    height: auto;
}
.main-inner {
    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: rgb(255,255,255);
    text-transform: uppercase;
    display: block;
    line-height: 24px;
}
.main-heading {
    font-size: 96px; 
    color: rgb(255,255,255);
    font-weight: 900;
    line-height: 1;
}
.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%; 
    border: 0;
    transition: 0.4s;
    font-size: 20px;
    color: rgb(255,255,255);
    font-weight: bold;
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0.7rem 1rem;
}
.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;
}
.logSign .button.active {
    color: rgb(62, 63, 94);
}
.form {
    border-radius: 12px;
    background-color: rgb(255,255,255);
    box-shadow: 0px 0px 60px 0px rgba(94, 92, 154, 0.12);
    margin-left: auto;
    min-height: 500px;
    padding: 65px;
    width: 65%;
    position: relative;
    z-index: 999;
}
.form-control:focus{
    box-shadow: none;
}
.form-control.uppercase{
    text-transform: uppercase;
}
.form-title {
    font-size: 26px;
    color: rgb(48, 47, 69);
    font-weight: bold;
    text-align: center;
    margin-bottom: 70px;
}
.forget {
    font-size: 15px;
    color: rgb(175, 176, 192);
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 30px;
}
.login-btn button::before {
    content: "GO!";
    font-size: 20px;
    font-weight: bold;
    background-color: rgb(62, 63, 94);
    color: rgb(255,255,255);
    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 {
    border-radius: 12px;
    background-color: #005fff;
    width: 100%;
    transition: 0.4s;
    height: 54px;
    font-size: 20px;
    margin-bottom: 40px;
    border: 0;
    position: relative;
    color: rgb(255,255,255);
    font-weight: bold;
    overflow: hidden;
}
.login-btn button:hover {
    padding-left: 65px;
}
body.swal2-shown{
    margin: 0 !important;
}
.swal2-content p{
    margin-bottom: 0;
}




@media (max-width: 1440px) {
    .wrapper {
        padding-left: 60px;
    }
    .form {
        width: 80%;
    }
}
@media (max-width: 1024px) {
    .form-title {
        margin-bottom: 50px;
    }
}
@media (max-width: 991px) {
    .side-text {
        width: 35%;
    }
    .side-text span {
        font-size: 1rem;
        line-height: 1rem;
    }
    .main-heading {
        font-size: 3rem;
    }
    .side-text p{
        font-size: 0.875rem;
    }
    .form {
        width: 100%;
        padding: 2.25rem;
    }
}
@media (max-width: 768px) {
    main::after {
        display: none;
    }
    .side-text {
        position: relative;
        width: 80%;
        margin: 0 auto;
        margin-top: 30px;
    }
    .order_2 {
        order: 2;
    } 
    .tab-100 {
        width: 100%;
    }
    .form {
        margin: 0 auto;
        margin-top: 0px;
        margin-top: 50px;
    }
}
@media (max-width: 576px) {
    .logo {
        margin: 100px 0 50px 0;
    }
    main::after {
        display: none;
    }
    .wrapper {
        width: 100%;
        padding: 0;
    }
    .main-inner {
        margin-top: 50px;
    }
    .order_2 {
        order: 2;
    }
    .side-text {
        position: relative;
        width: 100%;
        padding: 30px;
        margin: 0 auto;
        margin-top: 0px;
        margin-top: 30px;
    }
    .side-text span {
        font-size: 18px;
    }
    .side-text .main-heading {
        font-size: 50px;
    }
    .side-text p {
        font-size: 14px;
    }
    .logSign {
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000000;
        margin-top: 0;
        border-radius: 0;
    }
    .form {
        width: 100%;
        padding: 30px;
        border-radius: 0;
    }
}