@charset "utf-8";
/* CSS Document */

.btn{
	color: #F1F1F1;
	background: #ff7200;
	border: 1px solid #ff7200;
	border-radius: 5px;
	text-align: center;
	user-select: none;
	cursor: pointer;
	transition: background 3s;
}
.btn:hover{
	background: #c35802;
	color: #F1F1F1;
	transition: background 1s;

}
.pp{
	font-weight: bold;
	
}
.contact-section {
  text-align: left;
}

.contact-form {
  display: inline-block;
}form {
  margin: 20px auto;
  max-width: 500px;
}

label {
  display: block;
  margin-bottom: 5px;
}

input[type="text"], input[type="tel"], input[type="email"], input[type="date"] {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

input[type="submit"] {
  background-color: #272828;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #212121;
}