
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;700&display=swap');

body {
	color: #666;
	font-family: 'Roboto';	
	background: #fafafa;
	margin: 0;
	padding: 0;
}

.box {
	max-width: 480px;
	background: #ffffff;
	border: 1px solid #eee;
	margin: 70px auto 100px auto;
	padding: 40px;
	box-sizing: border-box;
}

	.box img {
		display: block;
		width: 140px;
		height: auto;
		margin: 0 auto;
	}
	
	.box h2 {
		font-size: 30px;
		font-weight: 400;
		text-align: center;
	}
	
	.box .btn {
		display: block;
		color: #ffffff;
		font-size: 16px;
		font-weight: 500;
		line-height: 20px;
		text-align: center;
		text-decoration: none;
		padding: 14px 10px;
		border-radius: 5px;
		background: rgb(0, 149, 246);
	}
	
	.box p {
		text-align: center;
		margin: 0px;
		padding-bottom: 12px;
	}
	
	.box textarea {
		width: 100%;
		height: 80px;
		padding: 14px;
		border: 1px solid #eee;
		background: #fcfcfc;
		box-sizing: border-box;
	}
	
