@charset "utf-8";
/* CSS Document */


input[type="text"],
select.form-control,
select.form-select {
  background: transparent;
  border: none;
  border-bottom: 1px solid #ef4136;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
	font-size: 1.5rem;
	
}

input[type="text"]:focus,
select.form-control:focus,
select.form-select {
  -webkit-box-shadow: none;
  box-shadow: none;
	background: transparent;
}
	
	
input[type="email"],
select.form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid #ef4136;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
	font-size: 1.5rem;
}

input[type="email"]:focus,
select.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
	background: transparent;
} 
	
textarea[type="text"],
select.form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid #ef4136;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
	font-size: 1.5rem;
}

textarea[type="text"]:focus,
select.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
	background: transparent;
} 



/*To remove the outline that appears on clicking the input textbox*/
input:focus {
  outline: none;
}

/* To format the placeholder text color */
::-webkit-input-placeholder {
   color: #ecf0f1;
}

:-moz-placeholder { /* Firefox 18- */
   color: #ecf0f1;  
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #ecf0f1;  
}

:-ms-input-placeholder {  
   color: #ecf0f1;  
}