* {
    box-sizing: border-box
}

body {
    /*background: #f6f5f7;*/
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    /*flex-direction: column;*/
    font-family: 'Montserrat', sans-serif;
    /*min-margin: 50px 0 50px;*/
    overflow: hidden;
}

img {
    opacity: 1.0;
    position: relative;
}

h1 {
    font-weight: 700;
    margin: 0
}

h2 {
    text-align: center
}

p {
    font-size: 14px;
    font-weight: 100;
    line-height: 20px;
    letter-spacing: .5px;
    margin: 20px 0 30px
}

a {
    color: #333;
    font-size: 14px;
    text-decoration: none;
    margin: 10px 0
}

button {
    border-radius: 20px;
    border: 1px solid #343A40;
    background-color: #343A40;
    color: #FFF;
    font-size: 12px;
    font-weight: 700;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in
}

button:active {
    transform: scale(0.95)
}

button:focus {
    outline: none
}

button.ghost {
    background-color: transparent;
    border-color: #FFF
}

form {
    /*background-color: #FFF;*/
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 30px;
    height: 100%;
    text-align: center
}

input {
    background-color: #eee;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%
}

.input-container {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    width: 100%;
    min-height: 10px;
}   
.icons {
    padding: 12px 15px;
    color: white;
    min-width: 10px;                            
    text-align: center;
    height: 36.5px;
    background: #343A40;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
}

.container {
    /*    background-color: #fff;*/
    border-radius: 10px;
    /*    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);*/
    position: relative;
    overflow: hidden;
    width: 650px;
    max-width: 100%;
    min-height: 400px
}

.form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all .6s ease-in-out;
    /*background-color: #fff;*/
    /*box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);*/    
}

.sign-in-container {
    left: 0;
    width: 50%;
    z-index: 2
}

.container.right-panel-active .sign-in-container {
    transform: translateX(100%)
}

.sign-up-container {
    left: 0;
    width: 50%;
    opacity: 0;
    z-index: 1
}

.container.right-panel-active .sign-up-container {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: show .6s
}

@keyframes show {
    0%,
    49.99% {
        opacity: 0;
        z-index: 1
    }
    50%,
    100% {
        opacity: 1;
        z-index: 5
    }
}

.overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform .6s ease-in-out;
    z-index: 100
}

.container.right-panel-active .overlay-container {
    transform: translateX(-100%)
}

.overlay {
    /*background: #343A40;*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    color: #FFF;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform .6s ease-in-out
}

.container.right-panel-active .overlay {
    transform: translateX(50%)
}

.overlay-panel {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform .6s ease-in-out
}

.overlay-left {
    transform: translateX(-20%)
}

.container.right-panel-active .overlay-left {
    transform: translateX(0)
}

.overlay-right {
    right: 0;
    transform: translateX(0)
}

.container.right-panel-active .overlay-right {
    transform: translateX(20%)
}

.social-container {
    margin: 5px 0
}

.social-container a {
    background: #343A40;
    color: #FFFFFF;
    border: 1px solid #DDD;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    height: 40px;
    width: 40px
}

footer {
    background-color: #222;
    color: #fff;
    font-size: 12px;
    bottom: 0;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 999
}

footer p {
    margin: 0
}

footer i {
    color: red
}

footer a {
    color: #3c97bf;
    text-decoration: none
}

.main-footer {
    background: #fff;
    border-top: 1px solid #dee2e6;
    color: #869099;
    padding: .25rem;
    font-size: 12px
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 7.5px;
    padding-left: 7.5px
}

.pull-right {
    float: right!important
}

.page-loader {
    position: fixed;
    background: #000;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    z-index: 9998;
}

.loader {
    position: absolute;
    border-left: 2px solid #ffffff;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    height: 46px;
    width: 46px;
    left: 50%;
    top: 50%;
    margin: -23px 0 0 -23px;
    text-indent: -9999em;
    font-size: 10px;
    z-index: 9999;
    -webkit-animation: load 0.8s infinite linear;
    -moz-animation: load 0.8s infinite linear;
    ms-animation: load 0.8s infinite linear;
    o-animation: load 0.8s infinite linear;
    animation: load 0.8s infinite linear;
}

.loader,
.loader:after {
    border-radius: 50%;
    width: 46px;
    height: 46px;
}

@-webkit-keyframes load {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

* {
    box-sizing: border-box
}

body {
    /*background: #f6f5f7;*/
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    /*flex-direction: column;*/
    font-family: 'Montserrat', sans-serif;
    /*min-margin: 50px 0 50px;*/
    overflow: hidden;
}

img {
    opacity: 1.0;
    position: relative;
}

h1 {
    font-weight: 700;
    margin: 0
}

h2 {
    text-align: center
}

p {
    font-size: 14px;
    font-weight: 100;
    line-height: 20px;
    letter-spacing: .5px;
    margin: 20px 0 30px
}

a {
    color: #333;
    font-size: 14px;
    text-decoration: none;
    margin: 10px 0
}

button {
    border-radius: 20px;
    border: 1px solid #343A40;
    background-color: #343A40;
    color: #FFF;
    font-size: 12px;
    font-weight: 700;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in
}

button:active {
    transform: scale(0.95)
}

button:focus {
    outline: none
}

button.ghost {
    background-color: transparent;
    border-color: #FFF
}

form {
    /*background-color: #FFF;*/
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 30px;
    height: 100%;
    text-align: center
}

input {
    background-color: #eee;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%
}

.input-container {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    width: 100%;
    min-height: 10px;
}   
.icons {
    padding: 12px 15px;
    color: white;
    min-width: 10px;                            
    text-align: center;
    height: 36.5px;
    background: #343A40;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
}

.container {
    /*    background-color: #fff;*/
    border-radius: 10px;
    /*    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);*/
    position: relative;
    overflow: hidden;
    width: 650px;
    max-width: 100%;
    min-height: 400px
}

.form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all .6s ease-in-out;
    /*background-color: #fff;*/
    /*box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);*/    
}

.sign-in-container {
    left: 0;
    width: 50%;
    z-index: 2
}

.container.right-panel-active .sign-in-container {
    transform: translateX(100%)
}

.sign-up-container {
    left: 0;
    width: 50%;
    opacity: 0;
    z-index: 1
}

.container.right-panel-active .sign-up-container {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: show .6s
}

@keyframes show {
    0%,
    49.99% {
        opacity: 0;
        z-index: 1
    }
    50%,
    100% {
        opacity: 1;
        z-index: 5
    }
}

.overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform .6s ease-in-out;
    z-index: 100
}

.container.right-panel-active .overlay-container {
    transform: translateX(-100%)
}

.overlay {
    /*background: #343A40;*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    color: #FFF;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform .6s ease-in-out
}

.container.right-panel-active .overlay {
    transform: translateX(50%)
}

.overlay-panel {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform .6s ease-in-out
}

.overlay-left {
    transform: translateX(-20%)
}

.container.right-panel-active .overlay-left {
    transform: translateX(0)
}

.overlay-right {
    right: 0;
    transform: translateX(0)
}

.container.right-panel-active .overlay-right {
    transform: translateX(20%)
}

.social-container {
    margin: 5px 0
}

.social-container a {
    background: #343A40;
    color: #FFFFFF;
    border: 1px solid #DDD;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    height: 40px;
    width: 40px
}

footer {
    background-color: #222;
    color: #fff;
    font-size: 12px;
    bottom: 0;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 999
}

footer p {
    margin: 0
}

footer i {
    color: red
}

footer a {
    color: #3c97bf;
    text-decoration: none
}

.main-footer {
    background: #fff;
    border-top: 1px solid #dee2e6;
    color: #869099;
    padding: .25rem;
    font-size: 12px
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 7.5px;
    padding-left: 7.5px
}

.pull-right {
    float: right!important
}

.page-loader {
    position: fixed;
    background: #000;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    z-index: 9998;
}

.loader {
    position: absolute;
    border-left: 2px solid #ffffff;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    height: 46px;
    width: 46px;
    left: 50%;
    top: 50%;
    margin: -23px 0 0 -23px;
    text-indent: -9999em;
    font-size: 10px;
    z-index: 9999;
    -webkit-animation: load 0.8s infinite linear;
    -moz-animation: load 0.8s infinite linear;
    ms-animation: load 0.8s infinite linear;
    o-animation: load 0.8s infinite linear;
    animation: load 0.8s infinite linear;
}

.loader,
.loader:after {
    border-radius: 50%;
    width: 46px;
    height: 46px;
}

@-webkit-keyframes load {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.clockdate-wrapper {
    padding: 25px;
    max-width: 350px;
    width: 100%;
    text-align: center;
    border-radius: 5px;
    margin: 0 auto;
    margin-top: -15%;
    margin-bottom: 15%
}

#clock {
    font-family: sans-serif;
    font-size: 40px;
    text-shadow: 0 0 1px #fff;
    color: #343A40;
}

#clock span {
    color: #343A40;
    text-shadow: 0 0 1px #333;
    font-size: 10px;
    position: relative;
    top: -27px;
    left: -10px
}

#date {
    letter-spacing: 10px;
    font-size: 14px;
    font-family: arial, sans-serif;
    color: #343A40
}

body {
    background-color: #222
}

.video-hero,
.video-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1000;
    overflow: hidden
}

:root {
    --color-dark: #161616;
    --color-smoke: #e4e4e4;
    --font-face: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"
}

body.linked p {
    color: var(--color-smoke);
    transition: color 300ms linear
}

h1 {
    text-align: center;
    transition: opacity 300ms linear;
    color: #343A40;
    font-family: var(--font-face);
    font-size: 52px;
    font-weight: 700
}

p {
    max-width: 460px;
    margin: 0 auto;
    transition: color 300ms linear;
    text-align: center;
    color: #343A40;
    font-weight: 400;
    line-height: 1.5
}

.main-container {
    margin: -150px auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.button {
    display: flex;
    overflow: hidden;
    margin: 10px;
    padding: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all 150ms linear;
    text-align: center;
    white-space: nowrap;
    text-decoration: none!important;
    text-transform: none;
    text-transform: capitalize;
    color: #fff;
    border: 0 none;
    border-radius: var(--borderRadius);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    justify-content: center;
    align-items: center;
    flex: 0 0 160px;
    box-shadow: 2px 2px 10px var(--color-smoke)
}

.button.-regular {
    color: #202129;
    background-color: #f2f2f2
}

.button.-regular:hover {
    color: #202129;
    background-color: #e1e2e2;
    opacity: 1
}

.button.-regular:active {
    background-color: #d5d6d6;
    opacity: 1
}