
/* STYLES FOR FORM INPUTS */
label{
  font-weight: bold;
  margin: 0.4rem;
  }

input{  /* [type=text], [type=email], [type=password] */
  width: 60%;
  border-radius: 25px 25px;
  padding: 5px 12px;  
  margin-bottom: 9px;
  color: #000000;
  }

input#landing_text{
  width: 180px;
  border-radius: 25px 2px;
  margin: 0px;
  padding: 2px 12px;  
  font-size: 12px;
  }

input#subject{
  width: 95%;
  }

textarea{
  height: 150px;
  width: 95%;
  margin-bottom: 5px; 
  border-radius: 15px 15px;      
  padding: 5px 12px;
  resize: none;
  color: #000000;
  }  

input[type=checkbox]{
  display: inline-block;
  width: 20px;
  border-radius: 0%;
  margin: 0;
  padding: 0;
  }

/* STYLES FOR SUBMIT BUTTON */
input[type=submit]{
  height: 2.5rem;
  min-width: 50px;
  padding: 1px 5px;
  background-color: #b3b3b3;
  transition: background-color 2s;
  border: 2px solid #b3b3b3;
  border-radius: 25px 25px;
  cursor: pointer;
  display: inline-block;  
	}

input[type=submit]:hover{
  border: 2px solid;
  background-color: #33cc33;
  transition: background-color 2s;  
  border-top-color: #f2f2f2;
  border-left-color: #e6e6e6;
  border-right-color: #808080;
  border-bottom-color: #666666;
  border-radius: 25px 25px;
  display: inline-block;
	}

input[type=submit]#set_landing{
  width: 90px;
  }
  
input[type=submit]#send_email{
  width: 90px;
  margin-right: 5%;
  }  



