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;
}

a {
    text-decoration: none;
}

h1 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

/*-----------------------------------------------------------------------------------
	    (null)
        Built with Blocs
-----------------------------------------------------------------------------------*/

body {
    margin: 0;
    padding: 0;
    background: #eaeff8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: Helvetica, Arial, sans-serif;
}

a,
button {
    transition: all 0.3s ease-in-out;
    outline: none !important;
}

/* Prevent ugly blue glow on chrome and safari */
a:hover {
    text-decoration: none;
    cursor: pointer;
}

.content {
    display: flex;
    flex-flow: column;
    height: 100vh;
    margin: 0;
}

@media (min-width: 600px) {
    .content {
        margin: 0 auto;
        width: 600px;
    }
}

.content .header {
    flex-grow: 0;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    padding: 36px;
}

.content .body {
    flex-grow: 1;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.content .body h1 {
    margin-bottom: 10px;
    text-align: center;
}

.content .body h3 {
    color: rgba(0, 0, 0, 0.5);
    margin-top: 10px;
    text-align: center;
}

.content .footer {
    flex-grow: 0;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    padding: 36px;
}

.content .footer form {
    display: block;
    width: 100%;
}

.button {
    color: #fff;
    background-color: #077f64;
    text-align: center;
    height: 48px;
    line-height: 48px;
    border-radius: 5px;
    min-width: 250px;
    font-size: 18px;
    width: 100%;
    border: none;
    cursor: pointer;
}