@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,400&display=swap');
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-sarif;

}
.form{
	display: flex;
	flex-direction: column;
	text-align: center;
	margin-top: 100px;
	/*border: 2px solid black;*/
}
.form label{
	font-size: 20px;
	font-weight: bold;

}
.form .textfield{
	width: 50%;
	border: 2px solid #2970e3;
	height: 40px;
	padding: 3px 10px;
}
.form h1{
	padding: 30px;
}
.form button{
	width: 250px;
	height: 45px;
	margin-top: 30px;
	font-size: 25px;
	background: linear-gradient(#2970e3,#071d42);
	color: white;
	font-weight: bold;
	cursor: pointer;
	border: none;

}
.form button:hover{
	background: linear-gradient(#071d42,#2970e3);
}
.form input{
	font-size: 18px;
	font-weight: bold;
}
@media(max-width: 740px){
	.form .textfield{
	width: 80%;
	}
        
    }
@media(max-width: 600px){
	.form .textfield{
	width: 90%;
	height: 50px;
	}
        
    }
