.wrapper {
    margin: 0 auto;
    max-width:580px;
}
 
#contact_form { 
    /*text-shadow:0 1px 0 #FFF;*/
    border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    background-color:rgba(255,255,255,.05);
    padding:25px;
     
}
 
 
#ff label { 
    cursor:pointer;
    margin:4px 0;
	padding:4px;
    color:#666;
    display:block;
    font-weight:800;
     
}
 
input { 
    display:block;
    width:100%;
    border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    background-color:rgba(255,255,255,.10);    
	color:#999;
    border:1px solid #7f57aa;
    padding:10px;
    margin:0px;
}
 
textarea { 
    display:block;
    width:90%;
    border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    background-color:rgba(255,255,255,.10);    
	color:#999;
    border:1px solid #7f57aa;
    padding:10px;
    margin-bottom:0px;
}
 
.sendButton {
    cursor:pointer;
    /*-moz-box-shadow:inset 0px 1px 0px 0px #fce2c1;
    -webkit-box-shadow:inset 0px 1px 0px 0px #fce2c1;
    box-shadow:inset 0px 1px 0px 0px #fce2c1;*/
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #3d1c61), color-stop(1, #5d2a94) );
    background:-moz-linear-gradient( center top, #ffffff 5%, #5d2a94 100% );
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#3d1c61', endColorstr='#5d2a94');
    background-color:#3d1c61;
    -webkit-border-radius:16px;
    -moz-border-radius:16px;
    border-radius:16px;
    border:1px solid #7f57aa;
    color:#ffffff;
    font-family:Arial;
    font-size:14px;
    width:25%;
    font-weight:bold;
    /*text-shadow:1px 1px 0px #cc9f52;*/
}
.sendButton:hover {
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #5d2a94), color-stop(1, #3d1c61) );
    background:-moz-linear-gradient( center top, #5d2a94 5%, #3d1c61 100% );
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#5d2a94', endColorstr='#3d1c61');
    background-color:#5d2a94;
}