* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html,
body {
	height: 100%;
}

body {
	font-size: 100%;
	color: #090a0f;
	font-family: 'Source Sans Pro', sans-serif;
	background-color: #fff;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}

.main {
	position: absolute;
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	/* align-items: center; */
}

.contactYM {
  margin-bottom: 30px;
  text-align: center;
}

.footer {

  text-align: center;
}
.title {
	visibility: hidden;
}

.logoimg { 
	text-align: center;
  height: auto;
  max-width: 100%;
}

form {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  width: 90%;
  margin-left: 10px;
  margin-right: 10px;
}
form div, form label, form input, form textarea {
  width: 100%;
}

.field:nth-of-type(2) {
  margin: 16px 0;
}

label, input, textarea {
  padding: 12px;
  font-size: 130%;
}

label, [placeholder] {
  color: #555;
}

label i {
  margin: 0 10px 0 0;
}

.field:focus-within label {
  color: #000;
  /* letter-spacing: 2px; */
}

input, textarea {
  background: rgba(227, 226, 226, 0.5);
  border: none;
  border-radius: 6px;
  box-shadow: 0 8px 6px -6px #555;
}
input:focus, textarea:focus {
  background: white;
  box-shadow: none;
}

textarea {
  resize: none;
}
textarea::-webkit-scrollbar {
  width: 0;
}

button {
  background: #134263;
  margin: 16px 0 50px 0;
  padding: 8px 16px;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 8px 6px -6px #555;
}
button:hover {
  /* letter-spacing: 2px; */
  background: #1D9ba1;
  box-shadow: none;
}

/* @media (max-width: 500px) {
  form {
    width: 90%;
    margin-left: 10px;
  }
} */
