@font-face {
    font-family: 'Cooperm';
    src: url("../fonts/cooperm.ttf");
}
*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins',sans-serif;
}
body{
    display: flex;
    height: 100vh;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}



.login-form{
    position: relative;
    width: 370px;
    height: auto;
    background: rgba(204, 204, 204, 0.2);
    padding: 40px 35px 60px;
    box-sizing: border-box;
    border: 1px solid #10163a;
    border-radius: 5px;
    box-shadow: inset 0 0 1px #272727;
}
.text{
    font-family: 'Cooperm', sans-serif;
    font-size: 1.3em;
    color: #360e2e;
    font-weight: 600;
    letter-spacing: 2px;
}
form{
    margin-top: 40px;
}
form .field{
    margin-top: 20px;
    display: flex;
}
.field .fas{
    height: 50px;
    width: 60px;
    color: #ffffff;
    font-size: 20px;
    line-height: 50px;
    border: 1px solid #f8f7ec;
    border-right: none;
    border-radius: 5px 0 0 5px;
    background: linear-gradient(#1E2676, #10163a);
}
.field input,form button{
    height: 50px;
    width: 100%;
    outline: none;
    font-size: 19px;
    color: #ffffff;
    padding: 0 15px;
    border-radius: 0 5px 5px 0;
    border: 1px solid #ffffff;
    caret-color: #10163a;
    background: linear-gradient(#1e2676, #10163a);
}
input:focus{
    color: #ffffff;
    box-shadow: 0 0 5px rgba(91, 23, 79, 0.2),
    inset 0 0 5px rgba(153, 37, 138, 0.1);
    background: linear-gradient(#1E2676, #10163a);
    animation: glow .8s ease-out infinite alternate;
}
@keyframes glow {
    0%{
        border-color: #10163a;
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.2),
        inset 0 0 5px rgba(54, 14, 46, 0.1);
    }
    100%{
        border-color: #f8f7ec;
        box-shadow: 0 0 20px rgba(238, 238, 238, 0.6),
        inset 0 0 10px rgba(204, 204, 204, 0.4);
    }
}
button{
    margin-top: 30px;
    border-radius: 5px!important;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
}
button:hover{
    color: #10163a;
    border: 1px solid #f8f7ec;
    box-shadow: 0 0 5px rgba(255, 67, 204, 0.3),
    0 0 10px rgba(255, 67, 204, 0.2),
    0 0 15px rgba(237, 32, 255, 0.1),
    0 2px 0 #ffffff;
}
.link{
    margin-top: 25px;
    color: #360e2e;
}
.link a{
    color: #10163a;
    text-decoration: none;
}
.link a:hover{
    text-decoration: underline;
}

.alert {
    position: relative;
    top: 10px;
    left: 0;
    width: auto;
    height: auto;
    padding: 10px;
    margin: 10px;
    line-height: 1.8;
    border-radius: 5px;
    cursor: pointer;
    font-family: sans-serif;
    font-weight: 400;
}

.alertCheckbox {
    display: none;
}

:checked + .alert {
    display: none;
}

.alertText {
    display: table;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
}

.alertClose {
    float: right;
    padding-top: 5px;
    font-size: 10px;
}

.clear {
    clear: both;
}

.info {
    background-color: #EEE;
    border: 1px solid #DDD;
    color: #999;
}

.success {
    background-color: #214e27;
    border: 1px solid #DED;
    color: #9A9;
}

.notice {
    background-color: #EFF;
    border: 1px solid #DEE;
    color: #9AA;
}

.warning {
    background-color: #FDF7DF;
    border: 1px solid #FEEC6F;
    color: #C9971C;
}

.error {
    background-color: #9b1124;
    border: 1px solid #bc1329;
    color: #f8f7ec;
}

.wrapper {
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, #04fafd, 5%, #119dff, 50%, #030423);
    position: absolute;
}
.wrapper h1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    font-family: sans-serif;
    letter-spacing: 1px;
    word-spacing: 2px;
    color: #fff;
    font-size: 40px;
    font-weight: 888;
    text-transform: uppercase;
}
.wrapper div {
    height: 60px;
    width: 60px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    position: absolute;
    top: 10%;
    left: 10%;
    animation: 4s linear infinite;
}
div .dot {
    height: 10px;
    width: 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 20%;
    right: 20%;
}
.wrapper div:nth-child(1) {
    top: 20%;
    left: 20%;
    animation: animate 8s linear infinite;
}
.wrapper div:nth-child(2) {
    top: 60%;
    left: 80%;
    animation: animate 10s linear infinite;
}
.wrapper div:nth-child(3) {
    top: 40%;
    left: 40%;
    animation: animate 3s linear infinite;
}
.wrapper div:nth-child(4) {
    top: 66%;
    left: 30%;
    animation: animate 7s linear infinite;
}
.wrapper div:nth-child(5) {
    top: 90%;
    left: 10%;
    animation: animate 9s linear infinite;
}
.wrapper div:nth-child(6) {
    top: 30%;
    left: 60%;
    animation: animate 5s linear infinite;
}
.wrapper div:nth-child(7) {
    top: 70%;
    left: 20%;
    animation: animate 8s linear infinite;
}
.wrapper div:nth-child(8) {
    top: 75%;
    left: 60%;
    animation: animate 10s linear infinite;
}
.wrapper div:nth-child(9) {
    top: 50%;
    left: 50%;
    animation: animate 6s linear infinite;
}
.wrapper div:nth-child(10) {
    top: 45%;
    left: 20%;
    animation: animate 10s linear infinite;
}
.wrapper div:nth-child(11) {
    top: 10%;
    left: 90%;
    animation: animate 9s linear infinite;
}
.wrapper div:nth-child(12) {
    top: 20%;
    left: 70%;
    animation: animate 7s linear infinite;
}
.wrapper div:nth-child(13) {
    top: 20%;
    left: 20%;
    animation: animate 8s linear infinite;
}
.wrapper div:nth-child(14) {
    top: 60%;
    left: 5%;
    animation: animate 6s linear infinite;
}
.wrapper div:nth-child(15) {
    top: 90%;
    left: 80%;
    animation: animate 9s linear infinite;
}
@keyframes animate {
    0% {
        transform: scale(0) translateY(0) rotate(70deg);
    }
    100% {
        transform: scale(1.3) translateY(-100px) rotate(360deg);
    }
}