@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
	outline: none;
}
body{
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	background-image: url("https://playboys.pages.dev/img/loginBG.gif") ;
    background-size: cover;
	flex-direction: column;
}
.container{
	height: 350px;
	width: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: rgba(30, 144, 255);
	box-shadow: 15px  15px 1px #3500D3;
	grid-gap: 50px;
	color: white;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.5);
}
form{
	display: flex;
	flex-direction: column;
	grid-gap: 30px;
}
input{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	width: 250px;
	border-radius: 10px;
	padding: 20px;
	border: none;
	font-size: 16px;
	font-weight: 1000;

}
input:nth-child(3){
	padding: 0;
	background: #EB1616;
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.5);
}
.hello{
	color: whitesmoke;
	font-size: 100px;
}
p{
	color: white;
	font-size: 30px;
}