html{
    height: 100%;
}

body{
    height: 100%;
    width: 100%;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #1E1E1E;
    display: flex;
    flex-direction: column;
    position:relative;
}

.row {
  display: flex;
  height: 100%;
}

.flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.column {
  flex: 50%;
  height: 100%;
  /*display: flex;  
  flex-flow: wrap;*/
}

.login_splash{
    background-color: black;
    background-image: url("/static/accounts/images/auth-background.jpg");
}

.auth-announcement {
    margin-left: 40px;
    margin-right: 40px;
    color: white;
    margin-top: 0px;
    font-weight: 500;
    font-size: 25px;
}

.auth-btn {
    background-color: #0062dd;
    color: white;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    font-size: 17px;
    display: inline-block;
    margin: 20px auto 0;
    border-radius: 2px;
    font-weight: 500;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}


.logo-login{
    margin: auto;
    height: auto;
    padding-bottom: 10px;
    max-width: 100%;
}

.center-align{
    margin: auto;
    max-width: 100%;
}

.auth-body-hat{
    margin: 0 40px;
    padding-top:20px;
    text-align: left;
    height:36%;
}
.auth-body-hat img{
    height: 75px;
    margin-top: 20px;
}

.auth-footer{
    position: fixed;
    left: 40px;
    bottom: 20px;
    width: 50%;
    text-align: left;
}

.auth-footer a{
    color:white;
    white-space: nowrap;
    margin-right: 5px;
}

.auth-footer p{
    color:white;
}

@media(max-width: 1400px) or (max-height: 900px){
    .logo-login{        
        height: 70px;        
    }
    .auth-body-hat{
        height:40%;
    }
    
}


@media(max-width: 800px){
    .logo-login{
        margin: auto;
        height: 100px;
        padding: 20px;
        box-sizing: border-box;
    }

    .login_splash{
        visibility: hidden;
        display: none;
    }
    .auth-footer a{
        color:black;
    }
    .auth-footer p{
        color:black;
    }
    .auth-footer{
        position: fixed;
        left: 0;
        bottom: 10px;
        width: 100%;
        text-align: center;
    }
 
}
