/* transitions */
input[type="submit"],
button,
input[type="text"],
input[type="email"],
input[type="search"],
select,
textarea
{
  -webkit-transition: all 0.3s ease-out 0s;  
  -moz-transition: all 0.3s ease-out 0s; 
  -o-transition: all 0.3s ease-out 0s; 
  transition: all 0.3s ease-out 0s;
}
textarea {
  height: 150px;
}
label {
  color:#31234c;
}

input[type="text"],
input[type="search"],
input[type="email"],
select,
textarea
{
  border: 1px solid #eee;s
  width: 100%;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin: 0;
  padding: 15px 10px;
  height: 50px;
  background-color:#eee;
  color:#31234c;
  display:inline-block;
  width:100%;
}
textarea {
  height: 250px;
}

select {
  cursor: pointer;
  height:40px;
}

input[type="submit"],
button
{
  border:0;
  background-color:#cb0667;
  color:#fff;
  padding: 13px 26px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  }
  input[type="submit"]:hover,
  button:hover
  {
    /*background-color:#fff;*/
    color:#2f2038;
  }

.wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}