:root {
    --font-color: #1D2228;
    --placeholder-font-color: #414141;
    --bg-color: #E1E2E2;
    --font-nav-color: #464545;
    --bg-nav-color: #5CE0D8;
    --bg-nav-hv-color: #a3ddd9;
    --scrollbar-thumb-hover: #383838;
}

.dark {
    --font-color: #ffffff;
    --placeholder-font-color: #a4a4a4;
    --bg-color: #3b3d3f;
    --font-nav-color: #1BA098;
    --bg-nav-color: #212221;
    --scrollbar-thumb-hover: #13746e;
}

html,
body {
    color: var(--font-color) !important;
    background: var(--bg-color) !important;
    background-color: var(--bg-color) !important;
    user-select: none;
}


/*@import url('https://fonts.googleapis.com/css?family=Roboto');*/

@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');
* {
    box-sizing: border-box;
    outline: none;
    outline-style: none;
}

*:focus {
    outline: none;
    outline-style: none;
}

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;
    box-sizing: border-box;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

a {
    outline: 0;
    border: none;
    -moz-outline-style: 0;
}

body {
    font-weight: 400;
    color: #2e2f3e;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 18px;
}

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;
    color: inherit;
}

textarea {
    white-space: normal;
    font-size: inherit;
    padding: 0;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    text-align: center;
}

.auth-wrapper {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    padding: 1em;
    width: 40%;
    margin: 0 auto;
    top: 10em;
    position: relative;
    border-radius: 8px;
}

.auth-form-wrapper {
    display: inline-flex;
    width: 100%;
}

.auth-media {
    /* width: 200px; */
    width: 290px;
}

.auth-media>img {
    width: inherit;
    height: 272px;
}

.auth-form {
    width: 55%;
    padding: 8px 0px 8px 0px;
    margin: 0 auto;
}

input {
    padding-left: 40px !important;
    width: calc(100% - 40px) !important;
}

input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: none;
    /* background-color: #eee; */
    margin-bottom: 10px;
    letter-spacing: 0.2px;
}

input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: none;
    /* background-color: #eee; */
    margin-bottom: 10px;
    letter-spacing: 0.2px;
}

input[type="submit"] {
    width: 60%;
    border: none;
    border-radius: 3px;
    font-weight: 700;
    letter-spacing: 1px;
}

.auth-form-label {
    margin-bottom: 20px;
    text-align: center;
}

.primary-label {
    font-size: 28px;
    font-weight: 700;
}

.social-container {
    margin: 20px 0;
    text-align: center;
}

.social-container a {
    border: 1px solid var(--font-color);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    height: 40px;
    width: 40px;
    font-size: 24px;
}

.social-container a:hover {
    border: 1px solid var(--placeholder-font-color);
    color: var(--placeholder-font-color);
}

.auth-links-container {
    margin-bottom: 8px;
}

.auth-fp-link {
    font-size: small;
    text-align: center;
}

.ico-input {
    position: absolute;
    margin-top: 6px;
    font-size: 34px;
}

@media only screen and (max-width: 1289px) {
    .auth-wrapper {
        width: 50%;
    }
}

@media only screen and (max-width: 1000px) {
    .auth-wrapper {
        width: 60%;
    }
}

@media only screen and (max-width: 829px) {
    .auth-wrapper {
        width: 80%;
    }
}

@media only screen and (max-width: 620px) {
    .auth-wrapper {
        width: 90%;
        top: 3em;
    }
    .auth-form-wrapper {
        display: block;
    }
    .auth-media,
    input[type="submit"] {
        width: 100% !important;
    }
    .auth-form {
        width: 100%;
        padding: 22px 0px 8px 0px;
    }
}

input:focus {
    color: var(--font-color);
}

input {
    color: var(--font-color) !important;
}

::placeholder,

/* Chrome, Firefox, Opera, Safari 10.1+ */

:-webkit-input-placeholder,

/* Internet Explorer 10-11 */

::-ms-input-placeholder
/* Microsoft Edge */

{
    color: var(--placeholder-font-color);
    opacity: 1;
    /* Firefox */
}

input:autofill,
input:autofill:hover,
input:autofill:focus,
input:autofill:active,
input:-internal-autofill-selected,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
input:-internal-autofill-selected,
textarea:autofill,
textarea:autofill:hover,
textarea:autofill:focus,
textarea:autofill:active,
textarea:-internal-autofill-selected,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
textarea:-internal-autofill-selected,
select:autofill,
select:autofill:hover,
select:autofill:focus,
select:autofill:active,
select:-internal-autofill-selected,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active,
select:-internal-autofill-selected {
    background-color: var(--bg-color) !important;
    background-image: none !important;
    -webkit-text-fill-color: var(--font-color);
    transition: var(--bg-color) 5000s ease-in-out 0s;
}

.message {
    text-align: center;
    left: 50%;
    margin-top: 20%;
    border: var(--font-nav-color) solid 1px;
    padding: 30px;
    text-decoration: underline;
    cursor: pointer;
}