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;
}
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 {
    width: 100%;
    height: 100%;
    background-image: url('../img/background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #000;
}
sup {
	vertical-align: super;
	font-size: 12px;
}
#hdForm {
    width: 100%;
    max-width: 470px;
    margin: 0 auto;
    margin-top: 3%;
    border: 1px solid #707070;
}
#hdFormBottom {
    padding: 25px 50px;
}
#hdFormTop {
    padding: 15px;
    text-align: center;
    background-color: #000;
}
#hdFormTop img {
    width: 75px;
}
#hdFormBottom {
    background-color: #fff;
}
#hdFormTitle h1 {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
}
#hdFormTitle h2 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 5px;
}
#hdFormText p {
    margin: 25px 0;
    font-size: 17px;
    font-weight: 300;
    line-height: 21px;
}
#hdFormLogin .field {
    margin-bottom: 15px;
}
#hdFormLogin input,
#hdFormLogin button {
    display: block;
}
#hdFormLogin input[type="text"],
#hdFormLogin input[type="password"] {
    width: 100%;
    padding: 10px 25px;
    outline: none;
    border: 1px solid #C4C4C4;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 300;
    box-sizing: border-box;
}
#hdFormLogin input[type="checkbox"],
#hdFormLogin label {
    display: inline-block;
}
#hdFormLogin .checkbox {
    display: inline-flex;
    cursor: pointer;
    position: relative;
}
#hdFormLogin .checkbox > span {
    color: #000;
    padding: 5px;
}
#hdFormLogin .checkbox > input {
    height: 18px;
    width: 18px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    border: 1px solid #2C72DB;
    border-radius: 0;
    outline: none;
    transition-duration: 0.3s;
    cursor: pointer;
    margin-left: 0;
}
#hdFormLogin .checkbox > input:checked {
    background-color: #2C72DB;
}
#hdFormLogin .checkbox > input:checked + span::before {
    content: '\2713';
    display: block;
    text-align: center;
    color: #fff;
    position: absolute;
    left: 4px;
    top: 5px;
}
#hdFormLogin label {
    font-size: 14px;
    font-weight: 300;
}
#hdFormLogin button {
    text-align: center;
    width: 100%;
    padding: 15px;
    color: #fff;
    outline: none;
    border: none;
    border-radius: 4px;
    background-color: #2C72DB;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
#hdFormLogin button:hover {
    opacity: 0.75;
    cursor: pointer;
}
#hdFormLogin button i {
    font-size: 16px;
}
#hdFormLinks, #privacy {
    text-align: center;
    margin: 20px 0;
}
#hdFormLinks ul {
    display: flex;
    justify-content: space-between;
}
#hdFormLinks ul li, #privacy ul li {
    display: inline-block;
}
#privacy ul {
    display: flex;
    justify-content: space-evenly;
}
#hdFormText p a,
#hdFormLinks ul li a {
    color: #000;
    text-decoration: underline;
    font-size: 17px;
    font-weight: 300;
}
#hdCountrySelect {
    text-align: center;
    margin: 3% auto;
}
#hdCountrySelect a {
    text-align: center;
    width: 100%;
    padding: 15px;
    color: #2C72DB;
    outline: none;
    border: 1px solid #2C72DB;
    border-radius: 4px;
    background-color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
#hdCountrySelect a:hover {
    color: #fff;
    background-color: #2C72DB;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
@media only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
    body {
        background-image: none;
        background-color: #fff;
    }
    #hdForm {
        margin-top: 0;
        border: none;
    }
    #hdCountrySelect {
        margin-top: 0;
        padding-bottom: 50px;
        background-color: #fff;
    }
}