*{
    margin: 0;
    padding: 0;
    box-sizing:border-box;
}
body{
    width: 100%;
    height: 100vh;
    background: #ecf0f3;
}
.card{
    width: 22%;
    margin: auto;
    margin-top: 100px;
    height: 470px;
    border-radius: 20px;
    padding: 30px 20px 20px 20px;   
    box-shadow: 15px 15px 15px #cbced1, -10px -10px 15px#ffffff;
}
.logo{
    width: 60%;
    margin:auto;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1.3px;
    color: #03a9f4;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center; 
    animation-delay: 3s;   
	transform: rotate(0deg) translate(30px,30px);
	animation: animate 12s linear infinite;
}
.h2{
    width: 60%;
    margin:auto;
    margin-top:15px;
    font-weight:500;
    background-color: #ecf0f3;
    font-size: 18px;
    letter-spacing: 1.3px;
    color: #03a9f4;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center; 
}
.logo img{
    width: 100px;
    height: 100px; 
    border-radius: 50%;
    margin-bottom: 10px;
    padding: 5px;   
    background: #ecf0f3;    
        
}

.form{
    widows: 80%;
    margin: auto;
    margin-top: 25px;
}
.input .box{
    outline:none;
    border: none;
    background: none;
}
.input{
    display: flex;
    align-items: center;
    padding: 10px 12px;
    box-shadow: inset 2px 1px 4px #cbced1, inset -5px -5px 8px #ffffff;
    border-radius: 15px;
    justify-content: center;
    margin-bottom: 15px;
    border: 2px;

}

label{
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    font-family: Arial, Helvetica, sans-serif;
}
#btn .login {
    border: none;
    outline: none;
    background: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1.3px;
    cursor: pointer;    

}

#btn{
    text-align: center;
    padding: 10px 0px;
    background: #03a9f4;
    transition: .3s ease-in-out;
    margin:20px 0px 5px;
    box-shadow: 3px 3px 3px #b1b1b1, -3px -3px 3px #ffffff; 
}
#btn:hover{
    background: #4e9dc2;
    border: 1px solid #ecf0f3; 
    padding: 8px 0;
} 


.foot{
    padding: 2px;
    color:#000000;
    font-style: italic;
}
#f1{
    width: 80px;
    height: 20px;
    margin-left: 190px;
    margin-top: 17px;
    background-color:#c37b0d;
    border-radius:25px; 
}
.logo:hover, .input:hover{
    animation-play-state: paused;
    box-shadow:  8px 8px 8px #cbced1, -8px -8px 8px #ffffff;

}
/* .input:hover{
    box-shadow:  8px 8px 8px #cbced1, -8px -8px 8px #ffffff;

} */

@keyframes animate
{
	0%
	{
		transform: rotate(0deg)  scale3d(0.1);
	}
	5%
	{
		transform: rotate(0deg)  scale(0.2);
	}
	10%
	{
		transform: rotate(0deg)  scale(1.2);
	}
	20%
	{
		transform: rotateY(180deg) scale(1.2);
	}
	25%
	{
        transform: rotate(0deg) scale(1.2);
	}
	35%
	{
        transform: rotateX(-360deg) scale(1.2);
	}
    45%
    {
        transform: rotate(180deg)  scale(1.2);
	}
	60%
	{
		transform: rotate(90deg) translateY(0) scale(1.2);
	}
	75%
	{
		transform: rotate(0deg)  scale(1.2);
	}
	80%
	{
		transform: rotate(30deg)  scale(0.2);
    }
    90%	
    {
		transform: rotate(0deg) scale(1.2)
	}
	100%
	{
		transform: rotate(0deg)  scale(1.2)
	}
}

/* media queries */
@media (max-width:599px){
    .card{
        width: 80%;
        margin-top: 50px;
    }
    #f1{
        width: 80px;
        margin-left: 170px;
        margin-top: 17px;
        padding: 2px;
        height: 22px;
        
    }
}
@media (min-width: 600px) and (max-width: 800px){
    .card{
        width: 50%;
    }
}
@media (min-width: 801px) and (max-width: 1200px){
    .card{
        width: 50%;
    }
    #f1{
        margin-left: 150px;
    }

}
@media (min-width: 1201px){
    .card{
        width: 24%;
    }
    #f1{
        margin-left: 190px;
    }
}