﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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 {
    cursor: pointer;
}

/* LOGIN PAGE STYLES */
#login {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1em;
    line-height: 1em;
    display: table;
    width: 100%;
    height: 100vh;
}

#login>* {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
}

#login .background-image {
    overflow: hidden;
}

#login .background-image img {
    display: block;
    width: 50vw;
    height: 100vh;
    object-fit: cover;
}

#login .login-contents {
    padding: 0 10%;
}

#login .login-contents .logo {
    width: 100%;
    max-width: 275px;
    margin-bottom: 25px;
}

#login .login-contents .form-group {
    margin-bottom: 25px;
}

#login .login-contents label {
    display: inline-block;
    font-size: .85em;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 7px;
}

#login .login-contents input {
    display: block;
    width: calc(100% - 22px);
    padding: 10px;
    border: 1px solid #cdcdcd;
}

#login .login-contents button {
    background: #376081;
    color: #FFF;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: .9em;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

@media only screen and (max-width: 600px) {
    #login .background-image {
        display: none;
    }

    #login .login-contents {
        display: block;
        width: 80%;
        padding: 10%;
    }
}