@import url('https://fonts.googleapis.com/css?family=Roboto');
 
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}
 
.wrapper{
  background: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  /* height:90vh; */
  padding: 0 20px;
}
 
.contact-form{
  display: flex;
  /* max-width: 550px; */
  width:70%;
  /* height:90vh; */
  margin: 0 auto;
  /* margin-right:0; */
  background: rgba(0,0,0,0.8);
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
 
.input-fields{
  display: flex;
  flex-direction: column;
  margin-right: 4%;
}
 
.input-fields,
.msg{
  width: 48%;
}
 
.input-fields .input,
.msg textarea{
  margin: 10px 0;
  background: transparent;
  border: 0px;
  /* border-bottom: 2px solid #c5ecfd; */
  border-bottom: 2px solid #b99458;
  padding: 10px;
  color: #c5ecfd;
  width: 100%;
}
 
.input-fields .input:focus,
.msg textarea:focus{
  border-bottom: 2px solid #c5ecfd;
  color: #b99458 !important;
}

.input-fields .input:focus::-webkit-input-placeholder,
.msg textarea:focus::-webkit-input-placeholder{
  color: #b99458 !important;
}

.msg textarea{
  height: 212px;
}
 
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #c5ecfd;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #c5ecfd;
}
:-ms-input-placeholder {
  /* IE 10+ */
  color: #c5ecfd;
}
 
.btn {
    background: #b99458;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
}
 
#sendButton {
  font-family: Bebas Neue, Bebas-Neue;
  border-radius: 12px;
  background: #b99458;
  border: none;
  width: 100% !important;
  color: white !important;
  padding: 15px 32px !important;
  text-align: center;
  text-decoration: none !important;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

@media screen and (max-width: 600px){
  .contact-form{
    flex-direction: column;
  }
  .msg textarea{
    height: 80px;
  }
  .input-fields,
  .msg{
    width: 100%;
  }
}