@charset "UTF-8";
/* CSS Document */
@import url('https://rsms.me/inter/inter.css');
html { font-family: 'Inter', sans-serif; }
@supports (font-variation-settings: normal) {
  html { font-family: 'Inter var', sans-serif; }
}

body {background: #101010; margin:0;}

.white-bg {background: #fff;}
.black-bg {background:#000;}
.signin-box{ width:100%;max-width:500px; height: 80vh; margin:50px auto; border-radius:20px;}
.logo-bg {
  background-image: url('/images/logo-400.png');
  background-repeat: no-repeat;
  background-size: 200px;
  background-position: center;
}
input {width:70%; padding: 10px; border: 1px solid #ccc; font-size:18px;border-radius:6px;}
#greyline {border-top:1px solid #ccc; width:0px; margin: 10px 0;}

.scale-in-center {
	-webkit-animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.magenta-txt {color:#ed037c}
.blue-text {color:#00aeef}
.magenta-btn {display: block; padding: 15px 20px; background-color: #ed037c; color: #fff; border-radius:100px;text-decoration: none; font-weight: bold;}
/* ----------------------------------------------
 * Generated by Animista on 2023-6-15 8:22:8
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation scale-in-center
 * ----------------------------------------
 */
 @-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #7ac142;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: 10% auto;
  box-shadow: inset 0px 0px 0px #7ac142;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

.centered-list {
  display: inline-block; 
  text-align: left;
}

.font16 {
  font-size: 16px;
}






@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 55px #7ac142;
  }
}


@media only screen and (max-width: 600px) {

  .signin-box{ width:100%; max-width: 100%; height: 100vh; margin:0; border-radius:0px; box-shadow: none;}

}
