
body {
    background: url(../img/background.jpg) no-repeat scroll 0 0 #222222;
    background-size:100%;
    color: #234d96;
}

#register-form {
    background: url(../img/logo_uv_new.png) no-repeat scroll 10px 10px #d6d6d6;
    font-family: Helvetica,Arial,Sans-serif;
    width:465px;
    padding:20px;
    margin: 50px auto;
    border: 6px solid #234d96;
    -moz-border-radius:15px;
    -webkit-border-radius:15px;
    border-radius:15px;
    position:relative;
}
#register-form h1 {
    margin-top:50px;
    text-align: center;
    font-size:35px;
}
#register-form h2 {
    font-size:19px;
    margin-bottom:15px;
    font-style:italic;
    font-weight:normal;
}
#error{
	color: #FF0000;
}
#register-form h3 {
    font-size: 19px;
    margin-top: 30px;
    margin-bottom: 0px;
    font-weight:normal;
}

#register-form input,
#register-form select,
#register-form textarea,
#register-form label {
    font-size:15px;
    margin-bottom:2px;
}
#register-form input,
#register-form select,
#register-form textarea {
    width:450px;
    border: 1px solid #CEE1E8;
    margin-bottom:20px;
    padding:4px;
}
#register-form input:focus,
#register-form select:focus,
#register-form textarea:focus {
    border: 1px solid #234d96;
    background-color: #323232;
    color: #FFFFFF;
}
#register-form textarea {
    height:150px;
    resize: none;
}
#register-form label {
    display:block;
}
#register-form .required {
    font-weight:bold;
    color:#F00;
}
#register-form #submit-button {
    width: 100px;
    background-color:#333;
    color:#FFF;
    border:none;
    display:block;
    float:right;
    margin-bottom:0px;
    margin-right:6px;
    background-color:#234d96;
    -moz-border-radius:8px;
}
#register-form #submit-button:hover {
    background-color: #234d96;
}
#register-form #submit-button:active {
    position:relative;
    top:1px;
}
#register-form #loading {
    width:32px;
    height:32px;
    background-image:url(../img/loading.gif);
    display:block;
    position:absolute;
    right:130px;
    bottom:16px;
    display:none;
}
#errors {
    border:solid 1px #E58E8E;
    padding:10px;
    margin:25px 0px;
    display:block;
    width:437px;
    -webkit-border-radius:8px;
    -moz-border-radius:8px;
    border-radius:8px;
    background:#FFE6E6 url(../img/cancel_48.png) no-repeat 405px center;
    display:none;
}
#errors li {
    padding:2px;
    list-style:none;
}
#errors li:before {
    content: ' - ';
}
#errors #info {
    font-weight:bold;
}
#errors #info:before {
    content: '';
}
#success {
    border:solid 1px #83D186;
    padding:25px 10px;
    margin:25px 0px;
    display:block;
    width:437px;
    -webkit-border-radius:8px;
    -moz-border-radius:8px;
    border-radius:8px;
    background:#D3EDD3 url(../img/accepted_48.png) no-repeat 405px center;
    font-weight:bold;
    display:none;
}
#errors.visible, #success.visible {
    display:block;
}
#req-field-desc {
    font-style:italic;
}
/* Remove box shadow firefox, chrome and opera put around required fields. It looks rubbish. */
input:required, textarea:required {
    -moz-box-shadow:none;
    -webkit-box-shadow:none;
    -o-box-shadow:none;
    box-shadow:none;
}
/* Normalize placeholder styles */
/* chrome, safari */
::-webkit-input-placeholder {
    color:#CCC !important;
    font-style:italic;
}
/* mozilla */
input:-moz-placeholder, textarea:-moz-placeholder {
    color:#CCC !important;
    font-style:italic;
}
/* ie (faux placeholder) */
input.placeholder-text, textarea.placeholder-text  {
    color:#CCC !important;
    font-style:italic;
}
