﻿/*
 * Page: Login & Register
 * ----------------------
 */

body {
    margin: 0;
    background-color: #e6ecf0;
    height: 100%;
}

.content {
    height:100%;
    display:flex;
    flex-direction:row-reverse;
    flex:1;
}

.login-logo,
.register-logo {
    justify-content:center;
    font-size: 35px;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 300;
}

    .login-logo a,
    .register-logo a {
        color: #444;
    }

.login-page,
.register-page {
    background: #d2d6de;
}

.login-box,
.register-box {
    justify-content: center;
    align-items: center;
    max-height:90%;
    margin:7%;
    position:relative;
    flex:1;
}

back {
    background: #1da1f2;
}

.logo {
    justify-content:center;
    margin:5%;
    overflow: hidden;
    position: relative;
    flex:1;
}

@media (max-width: 768px) {
    .login-box,
    .register-box {
        
        margin-top: 20px;
    }

    .content {
        display:block;
        
    }
    .image {
        max-height:unset;
    }

}

.login-box-body,
.register-box-body {
    background: #fff;
    padding: 20px;
    border-top: 0;
    color: #666;
}

    .login-box-body .form-control-feedback,
    .register-box-body .form-control-feedback {
        color: #777;
    }

.login-box-tittle {
    font-size: 2em;
}
.login-box-msg,
.register-box-msg {
    margin: 0;
    text-align: center;
    padding: 0 20px 20px 20px;
}

.login-footer {
    background: rgba(40, 96, 144, 0.92);
    border-top: 10px;
    padding: 20px;
    color: #666;
}
    .login-footer > div {
        color: #fff;
    }
    
.login-footer-logo {
    margin-bottom: 25px;
    font-weight: 300;
}
.copy {
    text-align: right;
    font-style: oblique;
}
    .copy > a {
        color:#fff;
    }
    .copy > a:link {
        color:#fff;
    }
    
    .copy > a:hover {
        color: #fff;
        text-decoration:underline;
    }

.social-auth-links {
    margin: 10px 0;
}
