

body {
    margin: 0;
    height: 100%;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Exo', sans-serif;
    
}

.backRight {
    background-color: #323232;
    background-size: cover;
    position: absolute;
    right: 0;
    width: 50%;
    height: 100%;
}

.Logo {
    position: absolute;
    width: 50%;
    height: 25%;
    margin-left: 25%;
    margin-top: 32.5%;
    opacity: 1;
  }

/*  Disappear Logo on */
@media (max-width: 1060px) {
    .Logo {
     opacity: 0;
    }
   
  }

.backLeft {
    background-color: #000000;
    background-size: cover;
    position: absolute;
    left: 0;
    width: 50%;
    height: 100%;

}

#back {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -999;
}

#slideBox {
    width: 50%;
    max-height: 100%;
    height: 100%;
    overflow: hidden;
    margin-left: 50%;
    position: absolute;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.topLayer {
    width: 200%;
    height: 100%;
    position: relative;
    left: 0;
    left: -100%;
}

label {
    font-size: 0.8em;
    text-transform: uppercase;
}

input {
    background-color: transparent;
    border: 0;
    outline: 0;
    font-size: 1em;
    padding: 8px 1px;
    margin-top: 0.1em;
}

.left {
    width: 50%;
    height: 100%;
    overflow: scroll;
    background: #000000;
    left: 0;
    position: absolute;
}

.left label {
    color: #6CC3C3;
}

.left input {
    border-bottom: 1px solid #6CC3C3;
    color: #6CC3C3;
}

.left input:focus,
.left input:active {
    border-color: #03a9f4;
    color: #6CC3C3;
}

.left input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #2c3034 inset;
    -webkit-text-fill-color: #6CC3C3;
}

.right {
    width: 50%;
    height: 100%;
    overflow: scroll;
    background: white;
    right: 0;
    position: absolute;
}

.right label {
    color: #6CC3C3;
}

.right input {
    border-bottom: 1px solid #6CC3C3;
}

.right input:focus,
.right input:active {
    border-color: white;
}

.right input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #f9f9f9 inset;
    -webkit-text-fill-color: #212121;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    width: 80%;
    margin: 0 auto;
    position: relative;
}

.content h2 {
    font-weight: 300;
    font-size: 2.6em;
    margin: 0.2em 0 0.1em;
}

.left .content h2 {
    color: #6CC3C3;
}

.right .content h2 {
    color: #6CC3C3;
}

.form-element {
    margin: 1.6em 0;
}

.form-element.form-submit {
    margin: 1.6em 0 0;
}

.form-stack {
    display: flex;
    flex-direction: column;
}

.checkbox {
    -webkit-appearance: none;
    outline: none;
    background-color: #e3e3e3;
    border: 1px solid #e3e3e3;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 12px;
    border-radius: 4px;
    display: inline-block;
    position: relative;
}

.form-checkbox {
    display: flex;
    align-items: center;
}

.form-checkbox label {
    margin: 0 6px 0;
    font-size: 0.72em;
}

button {
    padding: 0.8em 1.2em;
    margin: 0 10px 0 0;
    width: auto;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1em;
    color: #fff;
    line-height: 1em;
    letter-spacing: 0.6px;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
    border: 0;
    outline: 0;
    transition: all 0.25s;
}

button.signup {
    background: #6CC3C3;
}

button.login {
    background: #6CC3C3;
}

button.off {
    background: none;
    box-shadow: none;
    margin: 0;
}

button.off.signup {
    color: #6CC3C3;
}

button.off.login {
    color: #6CC3C3;
}

button:focus,
button:active,
button:hover {
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
}

button:focus.signup,
button:active.signup,
button:hover.signup {
    background: #b5e7e7;
}

button:focus.login,
button:active.login,
button:hover.login {
    background: #b5e7e7;
}

button:focus.off,
button:active.off,
button:hover.off {
    box-shadow: none;
}

button:focus.off.signup,
button:active.off.signup,
button:hover.off.signup {
    color: #6CC3C3;
    background: #e3e3e3;
}

button:focus.off.login,
button:active.off.login,
button:hover.off.login {
    color: #6CC3C3;
    background: #e3e3e3;
}

@media only screen and (max-width: 768px) {
    #slideBox {
        width: 80%;
        margin-left: 20%;
    }

    .signup-info,
    .login-info {
        display: none;
    }
}