
/*--------------------------------------
    Page Styles
--------------------------------------*/
body {

    font-family: "Century Gothic", Helvetica, sans-serif;
    background-color: #7496AF;
    color: #ffffff;

}

/*--------------------------------------
    Headings
--------------------------------------*/
h1 {

    text-align: center;
    color: #ffffff;

}

h2 {

	text-align: center;
	color: #ffffff;

}	

section {

    width: 80%;
    margin: 40px auto;

}

/*--------------------------------------
    Table Styles
--------------------------------------*/
table {

    width: 100%;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.12);

}

th,
td {

    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);

}

th {

    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: bold;

}

tbody tr:nth-child(even) {

    background-color: rgba(255, 255, 255, 0.08);


}	


#tableSection {

    max-width: 900px;


}

table {

    border: 1px solid rgba(255, 255, 255, 0.35);

}



/*--------------------------------------
    Form Styles
--------------------------------------*/
#formSection p {

    max-width: 700px;
    margin: 0 auto 30px auto;

}

form {

    background-color: rgba(255, 255, 255, 0.16);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;

}

form div {

    margin-bottom: 22px;

}

label {

    font-weight: bold;

}

input[type="text"],
input[type="email"],
select,
textarea {

    width: 100%;
    padding: 10px;
    margin-top: 8px;

    border: none;
    border-radius: 6px;

    font-size: 16px;

    box-sizing: border-box;

}


input[type="radio"],
input[type="checkbox"] {

    margin-right: 10px;
	margin-bottom:8;

}

input[type="submit"] {

    display: block;
    margin: 30px auto;

    background-color: #005b96;
    color: white;

    border: none;

    padding: 14px 30px;

    border-radius: 8px;

    font-size: 18px;
    font-weight: bold;

    cursor: pointer;

    transition: background-color .3s ease,
                transform .2s ease;

}

input[type="submit"]:hover {

    background-color: #003f63;
    transform: scale(1.04);

}



form {

    max-width: 700px;
    margin: auto;
	box-shadow: 0 8px 20px rgba(0,0,0,.15);
	transition: .3s ease;
}

form:hover {

    box-shadow: 0 10px 28px rgba(0,0,0,.22);

}





