.roof-form {
	background: #2f2f2f;
	padding: 25px;
	max-width: 380px;
	border-radius: 6px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, .4);
}

.form-title {
	color: #fff;
	text-align: center;
	font-family: Barlow, sans-serif;
	font-size: 26px;
	margin-bottom: 15px;
}

.roof-form p {
	margin: 8px 0;
}

.roof-form input, .roof-form textarea {
	width: 100%;
	padding: 11px 12px;
	font-size: 14px;
	border: 1px solid #777;
	background: #555;
	color: #fff;
	border-radius: 4px;
	box-sizing: border-box;
}

.roof-form input::placeholder, .roof-form textarea::placeholder {
	color: #ddd;
}

.roof-form textarea {
	height: 70px;
	resize: none;
}

.roof-form input:focus, .roof-form textarea:focus {
	border-color: #f5ad0d;
	outline: none;
}

.roof-form input[type="submit"] {
	background: #f5ad0d;
	color: #000;
	font-weight: 600;
	padding: 12px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: .3s;
}

.roof-form input[type="submit"]:hover {
	background: #e09d09;
}

@media (max-width:768px) {
	.roof-form {
		max-width: 100%;
		padding: 20px;
	}
	
	.form-title {
		font-size: 22px;
	}
}