.send-message,.address-wrapper{
	background: white;
	padding: 40px;
	margin: 20px;
}
.custom-form {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
}
.custom-form .btn-custom {
  background-color: #0a0722;
  border-color: #0a0722;
}
.custom-form .form-input-group {
  position: relative;
  padding-top: 16px;
  margin-bottom: 16px;
}
.custom-form .form-input-group .animated-label {
  position: absolute;
  top: 20px;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  font-weight: 300;
  opacity: 0.5;
  cursor: text;
  transition: 0.2s ease all;
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.custom-form .form-input-group .animated-label:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 45%;
  height: 2px;
  width: 10px;
  visibility: hidden;
  background-color: #0a0722;
  transition: 0.2s ease all;
}
.custom-form .form-input-group.not-empty .animated-label {
  top: 0;
  font-size: 12px;
  color: #0a0722;
}
.custom-form .form-input-group .form-control {
  position: relative;
  z-index: 1;
  border-radius: 0;
  border-width: 0 0 1px;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  height: auto;
  padding: 3px 0 5px;
  background: transparent;
  z-index: 9;
  box-shadow:none;
}
.custom-form .form-input-group .form-control:focus {
  box-shadow: none;
  border-bottom-color: rgba(0, 0, 0, 0.12);
}
.custom-form .form-input-group .form-control:focus ~ .animated-label {
  top: 0;
  opacity: 1;
  color: #0a0722;
  font-size: 12px;
}
.custom-form .form-input-group .form-control:focus ~ .animated-label:after {
  visibility: visible;
  width: 100%;
  left: 0;
}
