@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,700');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: none;
    min-height: 100vh;
    background: #1f293a;
}

.container{
    position: relative;
    width: 256px;
    height: 256px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container span{
    position: absolute;
    left: 0;
    width: 32px;
    height: 6px;
    background: #2c4766;
    border-radius: 8px;
    transform-origin: 128px;
    transform: scale(2.2) rotate(calc(var(--i) * (360deg / 50)));
    animation: animateBlink 3s linear infinite;
    animation-delay: calc(var(--i)*(3s/50));
    opacity: 100%;
}

@keyframes animateBlink {
    0%{
        background: aqua;
    }
    25%{
        background: #2c4766;
    }
}

.login-box {
    position: absolute;
    width: 400px;
}

.login-box form{
    width: 100%;
    padding: 0 50px;

}

h2 {
    font-size: 2em;
    color: aqua;
    text-align: center;

}

h5 {
    font-size: 1em;
    color: aqua;
    text-align: center;

}

.input-box{
    position: relative;
    margin: 25px 0;
}

.input-box input {
    width: 100%;
    height: 50px;
    border: 2px solid #2c4766;
    outline: none;
    background: transparent;
    font-size: 1em;
    color: white;
    border-radius:40px;
    padding: 0 20px;
    transition: .5s ease;
}

.input-box input:focus,
.input-box input:valid{
    border-color: aqua;

}

.input-box label{
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 1em;
    color: white;
    pointer-events: none;
    transition: .3s ease;
}

.input-box input:focus~label,
.input-box input:valid~label {
    top: 1px;
    font-size: .8em;
    background: #1f293a;
    padding: 0 6px;
    color: aqua;
}


.forgot-pass{
    margin: -15px 0 10px;
    text-align: center;
}

.forgot-pass a {
    font-size: .85em;
    color: white;
    text-decoration: none;
}

.forgot-pass a:hover{
    text-decoration: underline;
}

.btn{
    width: 100%;
    height: 45px;
    background: aqua;
    border: none;
    outline: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 1em;
    color:#1f293a;
    font-weight: 600;
}

.signup-link {
    margin: 20px  0 10px;
    text-align: center;
}

.signup-link a{
    color: aqua;
    font-size: .85em;
    text-decoration: none;
}

.signup-link a:hover{
    text-decoration: underline;
}

.hotlink {
    text-align: center;
    margin: 10px 0 0;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    background: #1f293a;
}
