body {
  background-color: #ffffff;
  font-family: sans-serif;
  font-size: 15px;
}

.logo {
  margin: 50px auto;
  text-align: center;
}

h1 {
font-family: sans-serif;
font-size: 30px;
color: #f386ad;
margin-top:50px;
text-align: center;

}

.form {
  box-sizing: border-box;
  color: #f386ad;
  font-weight: bold;
  margin: auto;
  width: 50%;
  border: 2px solid #f386ad;
  border-radius: 10px;
  padding: 8px;
  box-shadow: 2px 1px;
}

.details {
  column-count: 2;
  text-align: center;
}

label {
  display: inline-block;
  width: 250px;
}

.details input[type=text] {
  padding: 4px 3px;
  margin: 5px 0;
  border: 1px solid #f386ad;
  border-radius: 5px;
  box-shadow: 1px 1px #f386ad;
	outline-color: #c26b8a;
}

.details input[type=text]:focus {
  background-color: #ffe6f2;
}

.details input[type=email] {
  padding: 4px 3px;
  margin: 5px 0;
  border: 1px solid #f386ad;
  border-radius: 5px;
  box-shadow: 1px 1px #f386ad;
	outline-color: #c26b8a;
}

.details input[type=mail]:focus {
   background-color: #ffe6f2;
}

.details input[type=date] {
  color: #f386ad;
  padding: 4px 3px;
  margin: 5px 0;
  border: 1px solid #f386ad;
  border-radius: 5px;
  box-shadow: 1px 1px #f386ad;
	outline-color: #c26b8a;
}
}

.details input[type=date]:focus {
   background-color: #ffe6f2;
}

textarea {
  display: block;
  resize: none;
  margin-left: auto;
  margin-right: auto;
  outline: none;
  border: solid 1px #f386ad;
	border-radius: 5px;
}

textarea:focus {
  border: solid 1px #f386ad;
	border-radius: 5px;
	background-color: #ffe6f2;
}

.btn {
  text-align: center;
}

input[type=submit] {
  background-color: #f386ad;
  border: 1px solid #f386ad;
  border-radius: 10px;
  color: white;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin: 4px 2px;
  cursor: pointer;
  box-shadow: 5px 2px;
}

input[type=submit]:hover {
    background-color: #c26b8a;
	transition: 0.4s;
	transform: scale(1.1);
}

.btn-return {
  background-color: #999;
  border-radius: 10px;
  color: white;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  margin: 40px 2px;
  cursor: pointer;
  box-shadow: 5px 2px;
}