/* form style */
#myform {
	color:#eee;
	margin:0 auto;
	position:relative;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	-khtml-border-radius:5px;
	border-radius: 5px;
}

/* nested fieldset */
#myform fieldset {
    border:0;
    margin:0;
    padding:0;
    background:#333333 url(/media/img/logo-medium.png) no-repeat scroll 215px 40px;
}


/* input field */
#myform input, select, textarea {
    border:2px solid #069;
    background-color:#FFF;
    padding:10px;
    color:#000;
    font-size:14px;

    /* CSS3 spicing 
    text-shadow:1px 1px 1px #000;*/
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	-khtml-border-radius:5px;
	border-radius: 5px;
	resize: none;
}

#myform input:focus { color:#000; background-color: #EBEBEB; }
#myform input:active { background-color:#9EC545; }

#myform textarea:focus { color:#000; background-color: #EBEBEB; }
#myform textarea:active { background-color:#9EC545; }


/* button */
#myform button {
	font-size: 16px; color: #FFF; font-family: "Oswald";
    outline:0;
	color:#fff;
    border:0px solid #069;
    background-color: #069;
    padding:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	-khtml-border-radius:10px;
	border-radius: 10px; cursor:pointer;

}

#myform button:hover {
    background-color: #666;

}

/* error message */
.error {
    height:15px;
    background-color:#FFFE36;
    font-size:11px;
    border:1px solid #000;
    padding:4px 10px;
    color:#000;
    display:none;

    -moz-border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius-bottomleft:0;
    -moz-border-radius-topleft:0;
    -webkit-border-bottom-left-radius:0;
    -webkit-border-top-left-radius:0;
	border-radius: 5px;
    border-radius-bottomleft:0;
    border-radius-topleft:0;
	

/*    -moz-box-shadow:0 0 6px #ddd;
    -webkit-box-shadow:0 0 6px #ddd;*/
}

.error p {
    margin:0;
}


#terms label {
    float:left;
}

#terms input {
    margin:0 5px;
}
