.home {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
}
 
.box {
	background-color: rgba(255, 165, 0, 0.9);
	margin: auto;
	margin-top: 5%;
	padding: 4vh;
	width: 20em;
	height: 20em;
	border-radius: 5ex;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}	

.form {
	background: transparent;
	border: none;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

input {
	font-size: 1.2em;
	background: transparent;
	border: none;
	outline: none;
	box-shadow: none;
	color: black;
	border-bottom: 2px solid black;
	margin-top: 10%;
}

.button:hover{
	background-color: black;
	opacity: 0.8;
	color: white;
}
 
.button {
	-webkit-appearance: button;
	border: none;
	background-color: rgba(76, 153, 0, 1);
	margin-top: 5%;
	border-radius: 5ex;
	transition: color 0.6s, background-color 0.4s, opacity 0.3s;	
	height: 4em;
	margin-top: 5%;
	margin-bottom: 5%;
}

@media (max-width: 1080px ){
	.home {
		flex-direction: column;
}
	.box {
		border-radius: 4em;
		width: 50%;
		height: 20em;
	}

	input {
		font-size: 2em;
	}
}
