*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height:100vh;
    background-image: url(BigSportgym.jpg);
    background-repeat: no-repeat;
    background-size: cover;

}
.formWrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: lightblue;
    width: 300px;
    height: 400px;
    text-align: center;
    border:1px solid;
    
}

h1{
    font-size: 50px;
    text-align: center;
    background-color: burlywood;
}
input{
	padding-top: 10px;
	padding-bottom:10px; 
	border-radius: 5px;
	border:1px solid;
	font-size: 14px;
    display: block;
}

button{
    cursor: pointer;
    margin-top: 10px;
    padding: 10px 10px;
}
button:hover{
    background-color: blue;
}