/*input[type=text]{
	border:none;
	padding: 12px 20px;
	border-bottom: 1px solid #D9D9D9 ;
}

input[type=text]:focus {
	background-color:aqua; 
	border:none;
}*/


input[type=text] {
  width: 100%;
  padding: 5px 10px;
  margin: 8px 0;
  border:none;
  border-bottom: 1px solid #555;
  outline: none;
}

input[type=text]:focus {
  background-color: white;
}

textarea{
	width: 100%;
	height: 150px;
	padding: 5px 10px;
	margin: 8px 0;
	border:none;
	border-bottom: 1px solid #555;
  	outline: none;
}

button {
	border:none;
	border-radius:25px;
	
	padding: 5px 35px;
	text-align: center;
	font-size: 16px;
	cursor:pointer;
}

button:hover{
	background-color: #DCDADA;
	
}



