﻿* {
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
    user-select: none;
    background: #F2F5FF;
}
.login-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .22);
    position: relative;
    overflow: hidden;
    width: 800px;
    min-height: 520px;
}
.overlay-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform .6s ease-in-out;
    z-index: 100;
}
.overlay {
    background: #ff416c;
    background: linear-gradient(to right, #ff4b2b, #ff416c) no-repeat 0 0 / cover;
    color: #fff;
    position: relative;
    height: 100%;
    width: 100%;
}

.sign-up-container {
    position: absolute;
    top: 0;
    height: 100%;
    left:50%;
    width: 50%;
    z-index: 1;
}
.sign-up-container .input-box {
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 0 50px;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.sign-up-container .input-box h1 {
    font-weight: bold;
    margin: 0 0 30px 0;
}
.sign-up-container input {
    background: #eee;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
    outline: none;
}

.sign-up-container .input-box  span {
    border-radius: 50px;
    border: 1px solid #ff4b2b;
    background: #ff4b2b;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    padding: 10px 0;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    cursor: pointer;
    margin:  30px 0 0 0;
    width: 100%;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, .25), 0px 5px 20px rgba(0, 0, 0, .22);
}

span:active {
    transform: scale(.95);
}

span:focus {
    outline: none;
}

span.ghost {
    background: transparent;
    border-color: #fff;
}
.code-box {
    position: relative;
    width: 100%;
}
.code-box .code-img {
    position: absolute;
    right: 0;
    cursor: pointer;
    max-width: 100%;
    height: 35px;
    margin: 10px 2px;
}
.footer{
    position: fixed;
    bottom: 20px;
    line-height: 40px;
    color: #6b6b6b;
    text-align: center;
    width: 100%;
    font-size: 14px;
}
.footer a{
    color: #6b6b6b;
    text-decoration: none;
}
.footer a img{
    display: inline;
    margin: 0 5px;
    width: 16px;
    vertical-align: middle;
    border-style: none;
}