@charset "utf-8";
/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, tt, var,
center,div,
dl, dt, dd, ol, ul, li,
fieldset, form, input, select, textarea, 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: top;
    text-align: left;
}

div, input, select, textarea {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

table {
    border-spacing:0;
    border-collapse: collapse;
}

textarea {
    resize:none;
}

textarea,
input[type=text]
input[type=password] {
    outline: 2px solid white;
    transition: outline 0.3s ease;
}

textarea:focus,
input[type=text]:focus,
input[type=password]:focus {
    outline: 2px solid #c81226;
}

input[type=button],
input[type=submit],
button {
    cursor:pointer;
    cursor:hand;
    outline-width: 0;
}

input[type=checkbox] {
    height: 2em;
    margin-right:0.4em;
}

ol, ul {
    list-style: none;
}

html {
    font-family: 'Open Sans', sans-serif;
    font-size:16px;
    color:#222324;
    height:100%;
}

body {
    background:#f0f3f5;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    height:100%;
}

label {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}