/*Resetting the css*/
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;
}
body{
    
    background-color: #006989;
    font-family: Futura,sans-serif;
}
form{
    width: 100%;
    padding: 50px;
    background-color: white;
    border-radius: 20px;
    /* margin-top: 150px; */
    margin-top: 100px;
    margin-bottom: 100px;
    font-family: Futura,sans-serif;
    font-style: normal;    
}
h4{
    font-family: Futura,sans-serif;
    font-style: normal;
    font-size: 1.3rem !important;
    font-weight: 500;

}
.btn-dark{
    width: 100%;
    border: none;
    background-color: #006989!important;
    color: white;
    border-radius: 20px;
}
.btn-dark:hover{
    background-color: #ffff !important;
	border: 1px solid #006989 !important;
	color: #006989;
}

.form-control{
    box-shadow: 0px 4px 4px rgba(0, 105, 137, 0.3)  !important;
}

/* Tablet View */
@media (min-width: 586px) {
    form{
        width: 50%;
        margin-top: 150px;

    }
}

/*Big screens*/
@media (min-width: 1024px) {
    form {
        width: 24%;
    }
}