/*! minireset.css v0.0.3 | MIT License | github.com/jgthms/minireset.css */

html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal
}

ul {
    list-style: none
}

button,
input,
select,
textarea {
    margin: 0
}

html {
    box-sizing: border-box
}

*,
*:before,
*:after {
    box-sizing: inherit
}

img,
embed,
iframe,
object,
audio,
video {
    height: auto;
    max-width: 100%
}

iframe {
    border: 0
}

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

td,
th {
    padding: 0;
    text-align: left
}

body {
    font-family: 'Rubik', sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    color: #434B4E;
    position: relative;
    background-color: rgba(255,255,255, 0.01);
    width: 100vw;
    height: 100vh;
    overflow: hidden
}

h1 {
    font-weight: 500;
    font-size: 36px;
    padding-bottom: 20px;
}

@media (min-width: 40.063em) {
    h1 {
        font-size: 40px
    }
}

.modal {
    position: absolute;
    text-align: center;
    width: 80vw;
    max-width: 600px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%)
}

.modal--body {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2)
}

.header {
    position: absolute;
    height: 60px;
    width: 100%;
    background-color: #fb6704;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.header > a {
    display: block;
    color: #fff;
    height: 40px;
    line-height: 40px;
    padding: 0px 30px;
    text-decoration: none;
    font-size: 18px;
    margin: 10px 15px;
    border: 1px solid rgba(0,0,0,0);
}

.header > a:hover {
    border: 1px solid #fff;
    border-radius: 5px;
}

.messages:not(:empty) {
    margin-bottom: 40px
}

@keyframes messageFade {
    from {
        opacity: 0;
        top: -10px
    }
    to {
        opacity: 1;
        top: 0
    }
}

.message {
    opacity: 0;
    animation-name: messageFade;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    position: relative;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    padding: 5px 20px;
    font-size: 90%
}

.message__error {
    color: #D8000C;
    background-color: #FFD2D2
}

.message__success {
    color: #4F8A10;
    background-color: #DFF2BF
}

.group {
    display: block;
    position: relative;
    margin-bottom: 40px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto
}

label {
    color: #fb6704;
    font-size: 14px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    transition: 0.2s ease all;
}

input {
    font-size: 18px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #fb6704;
}

input:focus {
    outline: none
}

input:focus ~ label {
    top: -10px;
    font-size: 14px;
    color: #fb6704;
}

input:valid ~ label {
    top: -10px;
    font-size: 14px;
    color: #fb6704;
}

.bar {
    position: relative;
    display: block;
    width: 100%
}

.bar::before,
.bar::after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #fb6704;
    transition: 0.2s ease all
}

.bar::before {
    left: 50%
}

.bar::after {
    right: 50%
}

input:focus ~ .bar:before,
input:focus ~ .bar:after {
    width: 50%
}

input:focus ~ .highlight {
    animation: inputHighlighter 0.3s ease
}

@keyframes inputHighlighter {
    from {
        background: #216653;
    }
    to {
        width: 0;
        background: transparent
    }
}

button {
    width: 100%;
    max-width: 400px;
    text-transform: none;
    font-size: 16px;
    line-height: 40px;
    border: 0;
    background: #fb6704;
    color: #ffffff;
    font-weight: 700;
    border-radius: 40px;
    transition: all .5s ease
}

button:hover {
    background: #fb6704;
    cursor: pointer
}

.password-reset {
    text-align: right;
    margin-top: 10px;
    color: #fff
}

.password-reset a:link {
    text-decoration: none;
    color: #fff
}

.password-reset a:visited {
    text-decoration: none;
    color: #fff
}

.password-reset a:active {
    text-decoration: none;
    color: #fff
}

.password-reset a:hover {
    color: #fff;
}

.reset-spacing {
    margin-bottom: 2em;
}

label.error {
    position: relative;
    text-align: left;
    display: block;
    margin-top: 2px;
    color: red;
}

.right-aligned-input {
    text-align: right;
    padding-right: 0px;
}

.left {
    flex: 1
}

.right {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.row {
    display: flex;
    flex-direction: row;
}

#overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999999;
    cursor: pointer;
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 99999;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #fb6704;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
