* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    margin: 0 31px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-top: 200px;
    background-image: url("/assets/login/img/bg.png");
    background-size: cover;
    background-repeat: repeat;
    font-family: "Raleway", sans-serif;
}
.container {
    position: relative;
    width: 400px;
    padding: 30px 65px;
    background: #FFF;
    text-align: center;
    border-radius: 10% 10% 10% 10% / 10% 10% 10% 10%;
}
.container::after {
    content: '';
    position: absolute;
    top: -200px;
    left: 0;
    right: 0;
    width: 100%;
    height: 420px;
    background-image: url('/assets/login/img/small.png');
    background-position: top;
    background-size: contain;
    z-index: -11;
}
.container .rocket {
    width: 300px;
    position: absolute;
    top: -120px;
    right: -9%;
    animation: animate 1s ease infinite alternate;
    transition: all 0.3s ease;
}
.container .text {
    margin: 30px 0 5px 0;
}
.container .text h1 {
    color: #616161;
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 5px;
}
.container .text p {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #616161;
    font-weight: 500;
    padding-bottom: 10px;
}
.container .form .animated-input {
    display: flex;
    flex-direction: column;
}
.container .form .animated-input input[type='text'] ,
.container .form .animated-input input[type='password'] {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #303030;
    padding: 15px 0px 5px 0px;
    outline: none;
    border: none;
    border-bottom: solid 1px #303030;
    background: none;
    transition: all 0.3s ease;
}
.container .form .animated-input input[type='text']:focus ,
.container .form .animated-input input[type='password']:focus {
    border-color: #5cb874;
}
.container .form .animated-input input[type='password'] {
    margin-top: 10px;
}
.container .form .check {
    display: flex;
    justify-content: end;
    margin: 10px 0;
    user-select: none;
}
.container .form .check input {
    display: none;
}
.container .form .check .disc {
   width: 15px;
   height: 15px;
   border-radius: 50%;
   background: #fff;
   display: inline-block;
   cursor: pointer;
   box-shadow: 0 0 3px #000;
   transition:  0.2s ease;
}
.container .form .check input:checked ~ .disc {
    background: #9900FF;
}
.container .form .check .remember {
    color: #9900FF;
    font-weight: bold;
}
.container .form .check .forget a {
    font-family: "Open Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    color: #5cb874;
}
.container .form .check .forget a:hover {
    color: #449d5b;
}
.container .btn {
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 700;
    border: none;
    outline: none;
    width: -webkit-fill-available;
    padding: 12px;
    margin: 10px auto;
    color: #fff;
    background: #5cb874;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.container .btn:hover {
    background: #449d5b;
}
.container .account a {
    text-decoration: none;
    color: #616161;
}
.container .account a:hover {
    color: #9900FF;
}
@keyframes animate {
    0% {top: -120px;}
    100% {top: -130px;}
}