@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,400&display=swap');

.login-form-bg {
    background: url(../images/login-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;
    height: auto;
    padding: 2em;
}

.login-bg-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.7;
    background: linear-gradient(270deg, #211d70, #401056);
    background-size: 400% 400%;
    -webkit-animation: bganimate 14s ease infinite;
    -moz-animation: bganimate 14s ease infinite;
    animation: bganimate 14s ease infinite;
}

@-webkit-keyframes bganimate {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes bganimate {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes bganimate {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}


.login-form__title {
    color: #515E75;
    margin-bottom: 20px;
}

.login-form__btn {
    background: #455F98;
    color: #fff;
    padding: 13px 40px;
    font-size: 14px;
}

.login-form__btn i,
.login-form__btn span {
    font-size: 16px;
    padding-right: 5px;
}

.login-form__btn.submit {
    padding: 15px 40px;
    background: var(--primary);
    font-weight: 700;
}

.login-form__intro p,
.login-form__intro h4 {
    margin-bottom: 0;
    color: #6A7890;
}

.login-form__intro h4 {
    padding: 10px 0;
}

.login-form__intro a {
    color: #596A81;
    text-decoration: underline;
}

.login-input .form-group {
    margin-bottom: 30px;
}

.login-input .form-group label {
    color: #505F76;
    font-size: 15px;
}

/* Login Select Custome */
.login-form__select .select2-container--default .select2-selection--single {
    background: transparent;
    border-width: 1px;
    color: #fff;
}

.login-form__select .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #fff transparent transparent transparent;
}

.login-form__select .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff;
}

.login-form__group {
    position: relative;
    margin-bottom: 40px;
}

.login-form-footer a {
    padding: 7px 20px;
    border: 1px solid white;
    border-radius: 20px;
    color: white;
}

.login-form-footer a:hover {
    background: var(--primary);
    border-color: var(--primary)
}

input.login-form__input,
select.login-form__input {
    font-size: 16px;
    padding: 10px 10px 10px 5px;
    -webkit-appearance: none;
    display: block;
    background: transparent;
    color: #fff;
    width: 100%;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #ddd;
}

input:focus {
    outline: none;
}


/* Label */

label {
    color: #ddd;
    font-size: 16px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    transition: all 0.2s ease;
}

/* active */

input:focus~label,
input.used~label {
    top: -20px;
    transform: scale(.85);
    left: -2px;
    /* font-size: 14px; */
    color: #fff;
}

/* Underline */

.bar {
    position: relative;
    display: block;
    width: 100%;
}

.bar:before,
.bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #fff;
    transition: all 0.2s ease;
}

.bar:before {
    left: 50%;
}

.bar:after {
    right: 50%;
}


/* active */

input:focus~.bar:before,
input:focus~.bar:after {
    width: 50%;
}


/* Highlight */

.highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}


/* active */

input:focus~.highlight {
    animation: inputHighlighter 0.3s ease;
}


/* Animations */

@keyframes inputHighlighter {
    from {
        background: #4a89dc;
    }

    to {
        width: 0;
        background: transparent;
    }
}

/* Ripples container */

.ripples {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: transparent;
}


/* Ripples circle */

.ripplesCircle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.ripples.is-active .ripplesCircle {
    animation: ripples .4s ease-in;
}


/* Ripples animation */

@keyframes ripples {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    100% {
        width: 200%;
        padding-bottom: 200%;
        opacity: 0;
    }
}

@media screen and (max-height: 640px) {
    .login-form-bg.h-100 {
        min-height: 100vh !important;
    }

}

/*V2*/
/*body.welcome {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background: #512da8;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}
*/

.welcome main {
    flex: 1 0 auto;
}

h1.title,
.footer-copyright a {
    font-family: 'Architects Daughter', cursive;
    text-transform: uppercase;
    font-weight: 900;
}

/* start welcome animation */

body.welcome {
    display: flex;
    
    min-height: 100vh;
    height: auto;
    flex-direction: column;
    background: url(../images/login-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    overflow: auto;
    position: relative;
    /*-webkit-font-smoothing: antialiased;*/
}

.welcome .splash {
    height: 0px;
    padding: 0px;
    border: 130em solid #000;
    position: fixed;
    left: 50%;
    top: 100%;
    display: block;
    box-sizing: initial;
    overflow: hidden;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: puff 0.5s 1.5s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards, borderRadius 0.2s 1.8s linear forwards;
}

.welcome #welcome {
    /*background: #311b92;*/
    width: 56px;
    /*border:2px solid #fff;*/
    height: 56px;
    position: absolute;
    left: 50%;
    top: 50%;
    overflow: hidden;
    opacity: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: init 0.5s 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards, moveDown .5s 1s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards, moveUp 0.8s 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards, materia 0.5s 2.5s cubic-bezier(0.86, 0, 0.07, 1) forwards, hide 2s 2.7s ease forwards;
}
/* moveIn */
.welcome .container,
.welcome a.btn {
    opacity: 0;
    animation: moveIn 2s 2.7s ease forwards;
}

@keyframes init {
    0% {
        width: 0px;
        height: 0px;
    }

    100% {
        width: 56px;
        height: 56px;
        margin-top: 0px;
        opacity: 1;
    }
}

@keyframes puff {
    0% {
        top: 100%;
        height: 0px;
        padding: 0px;
    }

    100% {
        top: 50%;
        height: 150%;
        padding: 0px 200%;
    }
}

@keyframes borderRadius {
    0% {
        border-radius: 50%;
    }

    100% {
        border-radius: 50%;
    }
}

@keyframes moveDown {
    0% {
        top: 50%;
    }

    50% {
        top: 40%;
    }

    100% {
        top: 100%;
    }
}

@keyframes moveUp {
    0% {
        /*background: #311b92;*/
        top: 100%;
    }

    50% {
        top: 40%;
    }

    100% {
        top: 50%;
        /*background: #039be5;*/
    }
}

@keyframes materia {
    0% {
        /*background: #039be5;*/
        /*border:2px solid #fff;*/
    }

    50% {
        /*border:2px solid #fff;*/
        /*top: 26px;*/
    }

    100% {
        /*border:2px solid #fff;*/
        /*width: 100%;
        height: 100%;
        border-radius: 0px;
        background:#fff;*/
        /*top: 26px;*/
        transform: scale(40);
    }
}

@keyframes moveIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes hide {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.maintainence-wrapper {
    background: linear-gradient(to bottom, #202020 75%, #111119 75%);
}

.coming-soon-wrapper {
    background: #1d212b;
}

.maintainence-wrapper h2{
    font-size:4em;
    font-weight: 100;
    font-family: 'Poppins', arial, sans serif;
    margin-bottom:15px;
    color: white;
}

.maintainence-wrapper h4, .coming-soon-wrapper h4 {
    font-size:2em;
    font-family: 'Poppins', arial, sans serif;
    font-weight: 400;
    line-height: 1.38em;
    margin-bottom:10px;
    color:#f3f3f3;
    opacity: 0.88;
}

.maintain-logo {
    margin-bottom:40px;
}

.maintain-logo svg {
    width:150px;
}

.rain {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.rain.back-row {
  display: none;
  z-index: 1;
  bottom: 60px;
  opacity: 0.5;
}

body.back-row-toggle .rain.back-row {
  display: block;
}

.drop {
  position: absolute;
  bottom: 100%;
  width: 15px;
  height: 120px;
  pointer-events: none;
  animation: drop 0.5s linear infinite;
}

@keyframes hide {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes drop {
  0% {
    transform: translateY(0vh);
  }
  75% {
    transform: translateY(90vh);
  }
  100% {
    transform: translateY(90vh);
  }
}

.stem {
  width: 1px;
  height: 60%;
  margin-left: 7px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.25));
  animation: stem 0.5s linear infinite;
}

@keyframes stem {
  0% {
    opacity: 1;
  }
  65% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.splat {
  width: 15px;
  height: 10px;
  border-top: 2px dotted rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  opacity: 1;
  transform: scale(0);
  animation: splat 0.5s linear infinite;
  display: none;
}

body.splat-toggle .splat {
  display: block;
}

@keyframes splat {
  0% {
    opacity: 1;
    transform: scale(0);
  }
  80% {
    opacity: 1;
    transform: scale(0);
  }
  90% {
    opacity: 0.5;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}
.coming-soon {
  position: relative;
  width: 80%;
  height: 500px;
  margin:0 auto;
  padding: 50px;
  /*line-height: 30vw;*/
  text-align: center;
  color: #252B37;
  background-color: #151823;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border-radius: 25px;
  
}
.coming-soon h2 {
    animation: textColor 10s ease infinite;
    font-family: 'Poppins', sans serif;
    font-weight: 100;
    font-size: 5em;
    margin-bottom: 15px;
}
.coming-soon:after {
  position: absolute;
  content: "";
  top: 5vw;
  left: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  transform: scale(0.75);
  -webkit-filter: blur(7vw);
  -moz-filter: blur(7vw);
  -ms-filter: blur(7vw);
  filter: blur(7vw);
  background: linear-gradient(270deg, #0fffc1, #7e0fff);
  background-size: 200% 200%;
  animation: animateGlow 10s ease infinite;
}

@media screen and (max-width: 767px) {
    .coming-soon {
        width: 90%;
        height: 600px;
    }

    .coming-soon:after {
        top: 80px;
    }
}
@keyframes animateGlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes textColor {
  0% {
    color: #7e0fff;
  }
  50% {
    color: #0fffc1;
  }
  100% {
    color: #7e0fff;
  }
}
