@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap');
* {
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', sans-serif;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body{
    width: 100%;
    color: white;
}

img{
    width: 200px;
    height:200px;
}
.card{
    background-color: #fff;
	border-radius: 10px;
  	box-shadow: 0 14px 28px rgba(0,0,0,0.25),
			0 10px 10px rgba(0,0,0,0.22);

	width: 400px;
	max-width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: column;
	padding: 0 50px;
	height: 100%;
	text-align: center;
    margin-top: 40px;
}

h1{
    color: gray;
}


section{
    display: flex;
    align-items: center;
    justify-content: center;
}


input {
	background-color:#EFF3F5;;
	border: none;
	padding: 12px 15px;
	margin: 8px 0;
	width: 100%;
    box-shadow: 0px 0px 4px rgba(0, 0, 0,.1); 
    color: #333;
}

button{
    color: gray;
    padding: 0.7em 1.7em;
    font-size: 18px;
    border-radius: 0.5em;
    background: #fff;
    transition: all .3s;
    box-shadow: 6px 6px 12px #c5c5c5,
                -6px -6px 12px #fff;
    border: none;
    margin-top: 30px;
    margin-bottom: 30px;
    

}

button:hover{
    box-shadow: -6px -6px 12px #c5c5c5,
    6px 6px 12px #fff;
}