html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

html{
    font-family:Arial, Helvetica, sans-serif;
    background-color:white;
    overflow-x:hidden;
    overflow-y:hidden;
}

form{
    margin-top:50px;
    background-color:#003F91;
    box-shadow:rgb(48, 48, 48) 5px 5px 5px;
    width:20%;
    padding:30px 60px 30px 60px;
    border-radius:10px;
    color:white;
}

form a{
    color:white;
}

#homeForm{
    width:50% !important;
    font-size:18px;
}

#centerForm{
    display:flex;
    justify-content:center;
    align-items:center;
    height:60vh;
    width:100%;
}

#loginForm{
    font-size:30px;
    text-align:center;
    font-weight:bold;
    margin-bottom:20px;
}

.textField{
    width:100%;
    height:30px;
    margin-bottom:20px;
    margin-top:5px;
    border-radius:3px;
    border:solid gray 1px;
}

form label{
    font-size:18px;
}

#submit{
    text-align:center;
    display:flex;
    justify-content:center;
    margin:auto;
    height:30px;
    width:30%;
    font-weight:bold; 
    background-color:white;
    border:solid gray 1px;
    border-radius:3px;
    cursor:pointer;
    transition:.25s;
}

#submit:hover{
    background-color:rgb(226, 226, 226);
}

#submit2{
    text-align:center;
    display:flex;
    justify-content:center;
    margin:auto;
    height:30px;
    width:30%;
    font-weight:bold; 
    background-color:white;
    border:solid gray 1px;
    border-radius:3px;
    cursor:pointer;
    transition:.25s;
}

#submit2:hover{
    background-color:rgb(226, 226, 226);
    transform:scale(5000%);
}

#signUp{
    text-align:center;
    display:flex;
    justify-content:center;
    margin:auto;
    font-size:12px;
    margin-top:15px;
}

header{
    height:100px;
    background-color:#003F91;
    display:flex;
    align-items:center;
    text-align:center;
    justify-content:center;
    font-size:40px;
    font-weight:bold;
    border-radius:0px 0px 30px 30px;
    color:white;
}

footer{
    height:100px;
    background-color:#003F91;
    display:flex;
    align-items:center;
    text-align:center;
    justify-content:center;
    font-size:40px;
    font-weight:bold;
    border-radius:30px 30px 0px 0px;
    color:white;
    bottom:0;
    position:fixed;
    width:100%;
}

header a, footer a{
    color:white;
    transition:.5s;
}

header a:hover, footer a:hover{
    color:rgb(168, 168, 168);
    transform:scale(102%);
}

#success{
    text-align:center;
}