@charset "utf-8";

input[type=text],[type=password], select {
width: 50%;
height: 30px;
padding-left: 5px;
margin-bottom: 3px;
margin-top: 3px;
box-shadow: 0 0 5px #00F5FF;
border: 2px solid #00F5FF;
color: #4f4f4f;
font-size: 16px;
position:relative;
}

textarea {
width: 50%;
height: 50px;
padding-left: 5px;
margin-bottom: 3px;
margin-top: 3px;
box-shadow: 0 0 5px #00F5FF;
border: 2px solid #00F5FF;
color: #4f4f4f;
font-size: 16px;
position:relative;

}

input[type=submit] {
    background-color: #000000;
	width:30%;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
	font-family:"Malithi Web";
	font-size:16px;
  
}
input[type=submit]:hover {
    background-color: #cee2f4;
	color:#000;
}

input[type=button] {
    background-color: #f27f21;
	width:30%;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  
}
input[type=button]:hover {
    background-color: #45a049;
}