body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
}


.control-gate {
    display: flex;
    height: 100vh;
}

.control-gate .left {
    width: 400px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.control-gate .copy {
    position: absolute;
    bottom: 0px;
    width: 100%;
    left: 0px;
    background: #A73673;
    color: white;
    color: #eefafb;
    font-size: .9em;
    padding: 10px 40px;
    box-sizing: border-box;
    font-weight: bold;
}

.brand {
    font-size: 2em;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #A73673;
}

.tagline {
    font-size: 1em;
    margin-bottom: 10px;
    font-weight: bold;
    color: grey;
}

.tagmessage {
    font-size: 1.2em;
    width: 400px;
    color: rgb(141, 141, 141);
}

.control-gate .right {
    flex: 1;
    background: url('https://images.pexels.com/photos/2622170/pexels-photo-2622170.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940');
    background: url('https://images.pexels.com/photos/2345976/pexels-photo-2345976.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940');
    background-size: cover;
    background-position: center;
}
.brand {

}

form {
    margin-top: 20px;
}

.form-container {
    position: relative;
    margin-bottom: 20px;
}

label {
    font-size: 1em;
    color: grey;
}
.form-container label {
    display: block;
    margin-bottom: 5px;
}

.form-container input {
    border: none;
    border: 1px solid #f2f2f2;
    width: 90%;
    padding: 15px 10px;
    padding-left: 40px;
    font-size: 1.2em;
    color: grey;
}
.form-container input:focus {
    outline: none;  
    border-color: #A73673;
}
.form-container i {
    position: absolute;
    left: 15px;
    bottom: 20px;
    color: #A73673;
    opacity: .5;
}

.login-btn {
    padding: 10px 40px;
    background: none;
    border: none;
    background: #A73673;
    color: white;
    border-radius: 5px;
    font-size: 1.3em;
    transition: all .1s ease-out;
}
.login-btn:hover {
    cursor: pointer;
    box-shadow: 2px 2px 10px -5px grey;
    transform: translateY(-2px);
}

.error {
    margin-top: 10px;
    color: crimson;
}

.forgot-password {
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

.glide-enter-active {
    transition: all .5s cubic-bezier(.01,.76,.25,.95);
    transition-delay: .5s;
}
.glide-leave-active {
    transition: all .5s cubic-bezier(.01,.76,.25,.95);
}
.glide-enter {  
    transform: translateX(100px);
    opacity: 0;
}
.glide-leave-to {
    transform: translateX(-20px);
    opacity: 0;
}