/* Global Styles */

*{
    padding: 0; /* Reset all padding to 0 */
    margin: 0; /* Reset all margin to 0 */
}

body{
    background: #475d92; /* Set HTML background color */
    font: 14px "Helvetica";  /* Set global font size & family */
    color: #374d82; /* Set global text color */
}

p{
    margin: 10px 0px 10px 0px; /* Add some padding to the top and bottom of the <p> tags */
}

/* Header */

#header{
    height: 45px; /* Set header height */
    background: #374d82; /* Set header background color */
}

#header h3{
    color: #FFFFF3; /* Set header heading(top left title ) color */
    padding: 10px; /* Set padding, to center it within the header */
}

/* Wrap */

#wrap{
    background: #ffc24e; /* Set content background to white */
    width: 615px; /* Set the width of our content area */
    margin: 0 auto; /* Center our content in our browser */
    margin-top: 50px; /* Margin top to make some space between the header and the content */
    padding: 10px; /* Padding to make some more space for our text */
    border: 1px solid #ffffff; /* Small border for the finishing touch */
    text-align: center; /* Center our content text */
}

#wrap h3{
    font: italic 22px Georgia; /* Set font for our heading 2 that will be displayed in our wrap */
}

#wrap .statusmsg{
    font-size: 12px; /* Set message font size  */
    padding: 10px; /* Some padding to make some more space for our text  */
    background: #ffd899; /* Add a background color to our status message   */
    border: 1px solid #374d82; /* Add a border arround our status message   */
    color: #374d82;
}

/* Form & Input field styles */

form{
    margin-top: 10px; /* Make some more distance away from the description text */
}

form .submit_button{
    background: #ffd899; /* Set button background */
    border: 1px solid #374d82; /* Small border around our submit button */
    padding: 8px; /* Add some more space around our button text */
    color: #374d82;
}

input{
    font: normal 16px Georgia; /* Set font for our input fields */
    border: 1px solid #374d82; /* Small border around our input field */
    padding: 8px; /* Add some more space around our text */
}