/* From Uiverse.io by alexruix */ 
.input {
	max-width: 100%;
	height: 60px;
	background-color: #e8e8e8;
	padding: 0 1rem;
	border: 1px solid transparent;
	font-size: 1rem;
	font-weight: 200;
	padding: 10px 20px;
	transition: border-color .3s cubic-bezier(.25,.01,.25,1) 0s, color .3s cubic-bezier(.25,.01,.25,1) 0s,background .2s cubic-bezier(.25,.01,.25,1) 0s;
}
  
.label {
	display: block;
	font-size: 20px;
	color: #232424;
	font-style: italic;
	font-weight: 100;
	line-height: 28px;
	transition: color .3s cubic-bezier(.25,.01,.25,1) 0s;
}
  
.input:hover, .input:focus, .form-element:hover .input {
	outline: none;
	border-color: #a6806c;
}
  
.form-element:hover .label, .input:focus {
	color: #232424;
}

.form-element textarea {
	padding: 20px;
	height: 200px;
}

.bt-enviar {
	font-family: 'Poppins', sans-serif;
	width: 100%;
	padding: 20px;
	background-color: #232424;
	color: #FFF;
	text-align: center;
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 100;
	border: none;
	cursor: pointer;
}

.bt-enviar:hover {
	background-color: #a6806c;
}

.item-contato {
	position: relative;
}

.item-contato:after {
	position: absolute;
	content: '';
	display: block;
	width: 15%;
	height: 1px;
	background-color: #232424;
	bottom: 0px;
}