
* {
    /* With these codes padding and border does not increase it's width and gives intuitive style.*/
  
	-webkit-box-sizing: border-box;   
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

div#envelope{
	width: 55%;
	margin: 0px 0% 0px 0%;
	padding:0px 0;
	border: 0px solid gray;
	border-radius:10px;
} 	

div#envelope2{
	width: 275px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 0px solid #999999;
    background-color: #ffffff;
} 
div#envelope22{
	width: 375px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 0px solid #999999;
    background-color: #ffffff;
} 
	
div#envelope3{
	width: 728px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 2px solid black;
    background-color: #000000;
} 
div#envelope4{
	width: 400px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 2px solid #000000;
    background-color: #ffffff;
} 	
form{
	width:99%;
	margin:0% 0%;
}  
/* Makes responsive fields.Sets size and field alignment.*/
input[type=text]{
	margin-bottom: 20px;
	margin-top: 10px;
	width:100%;
	padding: 15px;
	border-radius:5px;
	border:1px solid #000000;
}

input[type=password]{
	margin-bottom: 20px;
	margin-top: 10px;
	width:100%;
	padding: 15px;
	border-radius:5px;
	border:1px solid #000000;
}

input[type=submit]
{
	margin-bottom: 20px;
	width:100%;
	padding: 15px;
	border-radius:5px;
	border:1px solid #000000;
	background-color: #000000;
	color: #ffffff;
        font-weight:bold;
	font-size:24px;
	cursor:pointer;
}
#submit:hover
{
 background-color: #000000;
}
textarea{
	width:100%;
	padding: 15px;
	margin-top: 10px;
        border:1px solid #000000;
	border-radius:5px; 
	margin-bottom: 20px;
	resize:none;
  } 
input[type=text]:focus,textarea:focus {
	border-color: #d8242a;
}
input[type=password]:focus,textarea:focus {
	border-color: #d8242a;
}

  .clearfix {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
    }