@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('/static/customcolors.css');

*
{
    margin: 0;
    padding: 0;
    box-sizing:content-box;
    font-family: 'Poppins', sans-serif;
}
body
{
    display: flex;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background: var(--textcolor);
    font-family: 'Poppins', sans-serif;
}

.form-Bg
{
    margin-bottom: 60px;
    z-index: 15;
    position: relative;
    width: 340px;
    padding: 40px;
    overflow: hidden;
}
.form-header
{
    margin: 0 0 40px;
    text-align: center;
}
.form-header h1
{
    color: #03d476;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}
.form-header h2
{
    color: #fff;
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}
.form-header p
{
    color: rgba(255,255,255, 0.61);
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}
.form-group
{
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin: 0 0 20px;
}
.form-group input
{
    outline: none;
    display: block;
    background: #1a4657;
    width: 100%;
    border: 0;
    border-radius: 25px;
    padding: 12px 20px;
    color: #03d476;
    font-size: inherit;
    font-family: inherit;
    font-weight: 600;
    transition: 0.3s ease;
}

.cbx 
{
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}
.cbx span 
{
    display: inline-block;
    color: #fff;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
}
.cbx span:first-child
{
    position: relative;
    width: 18px;
    height: 18px;
    background: #1a4657;
    border-radius: 3px;
    transform: scale(1);
    vertical-align: middle;
    border:1px solid #194455;
    transition: all 0.2s ease;
}
.cbx span:first-child svg
{
    position: absolute;
    top: 4px;
    left: 3px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
}
.cbx span:first-child::before
{
    content: "";
    width: 100%;
    height: 100%;
    background: #03d476;
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 50%;
}
.cbx span:last-child
{
    padding-left: 8px;
}

.cbx:hover span:first-child
{
    border-color: #03d476;
}
.inp-cbx:checked + .cbx span:first-child
{
    background: #03d476;
    border-color: #03d476;
    animation: check 0.4s ease;
}

.inp-cbx:checked + .cbx span:first-child svg
{
    stroke-dashoffset: 0;
}

.inp-cbx:checked + .cbx span:first-child:before
{
    transform: scale(3.5);
    opacity: 0;
    transition: all 0.6s ease;
}
@keyframes check
{
    50%
    {
        transform: scale(0.9);
    }
}
.form-group .form-recovery
{
    color: #03d476;
    font-size: 15px;
    text-decoration: none;
    font-weight: 600;
}
.form-group button
{
    outline: none;
    background: #03d476;
    width: 100%;
    border: 0;
    border-radius: 25px;
    padding: 12px 20px;
    color: #a2ffd6;
    font-family: inherit;
    font-size: inherit;
    font-weight: 600;
    line-height: inherit;
    text-transform: uppercase;
    cursor: pointer;
}
button:focus
{
    color: #03d476;
    background: #fff;
}
::placeholder
{
    color: rgba(255, 255, 255, 0.863);
    font-weight: 500 !important;
}
.box-area
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.box-area li
{
    position: absolute;
    display: block;
    list-style: none;
    bottom: -150px;
    animation: animated 20s linear infinite;

}

.btn {
  width: 150px;
  background-color: var(--textcolor);
  border:#fff solid 2px ;
  outline: none;
  height: 49px;
  border-radius: 49px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  margin: 10px 0;
  cursor: pointer;
  transition: 0.5s;
  text-align:center;
}

.btn:hover {
  background-color:var(--primarycolor) ;
  color:var(--textcolor);
}
/*@keyframes animated
{
    0%
    {
        transform:  translateY(0) rotate(0deg);
    }
    100%
    {
        transform:  translateY(-880px) rotate(360deg);
    }
}
.box-area li:nth-child(1)
{
    left: 10%;
    font-size: 20px;
    color: white;
    animation-delay: 0s;
}
.box-area li:nth-child(3)
{
    left: 26%;
    font-size: 30px;
    color: white;
    animation-delay: 5s;
}
.box-area li:nth-child(5)
{
    left: 50%;
    font-size: 25px;
    color: white;
    animation-delay: 2s;
}
.box-area li:nth-child(7)
{
    left: 60%;
    font-size: 45px;
    color: #1a4657;
    animation-delay: 4.5s;
}
.box-area li:nth-child(9)
{
    left: 80%;
    font-size: 30px;
    color: white;
    animation-delay: 6s;
}
.box-area li:nth-child(2)
{
    left: 90%;
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50px;
    animation-delay: 4.5s;
    animation-direction: 10s;
}

.box-area li:nth-child(4)
{
    left: 73%;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50px;
    animation-delay: 15s;
}

.box-area li:nth-child(6)
{
    left: 47%;
    width: 21px;
    height: 21px;
    background: white;
    border-radius: 50px;
    animation-delay: 3.8s;
}

.box-area li:nth-child(8)
{
    left: 38%;
    width: 25px;
    height: 25px;
    background: white;
    border-radius: 50px;
    animation-delay: 16s;
}

.box-area li:nth-child(10)
{
    left: 19%;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50px;
    animation-delay: 1.2s;
}

*/

/*.animation-area {
    background: linear-gradient(to left, #8F2743, #8F2743);
    width: 100%;
    height: 100vh;
}
.box-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}*/
.box-area li {
    position: absolute;
    display: block;
    list-style: none;
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 20s linear infinite;
    bottom: -150px;
}
.box-area li:nth-child(1) {
    left: 86%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}
.box-area li:nth-child(2) {
    left: 12%;
    width: 30px;
    height: 30px;
    animation-delay: 1.5s;
    animation-duration: 10s;
}
.box-area li:nth-child(3) {
    left: 70%;
    width: 100px;
    height: 100px;
    animation-delay: 5.5s;
}
.box-area li:nth-child(4) {
    left: 42%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 15s;
}
.box-area li:nth-child(5) {
    left: 65%;
    width: 40px;
    height: 40px;
    animation-delay: 0s;
}
.box-area li:nth-child(6) {
    left: 15%;
    width: 110px;
    height: 110px;
    animation-delay: 3.5s;
}
@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-800px) rotate(360deg);
        opacity: 0;
    }
}

































































