body{
    background-color: #F4F4F4;
}

.auth_wrapper{
    display: flex;
        display: -webkit-box;
        display: -ms-flexbox;
    width: 100%;
    height: 100%;
    align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
    justify-content: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
}

.auth_window{
    width: 300px;
    background-color: #FFF;
    display: flex;
        display: -webkit-box;
        display: -ms-flexbox;
    flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
    justify-content: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
    align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
    padding: 40px 0px 40px 0px;
    border-radius: 5px;
    border-right: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
}

.logo{
    width: 125px;
    height: 75px;
    background-image: url("/assets/img/logo.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0px 0px 40px 0px;
}

.text_input{
    border: none;
    background: none;
    outline: none;
    font-family: Commissioner;
    font-size: 0.9em;
    font-weight: 300;
    background-color: #F4F4F4;
    margin: 0px 0px 5px 0px;
    padding: 10px;
    border-radius: 3px;
    max-width: 200px;
    min-width: 200px;
}

.button_input{
    border: none;
    background: none;
    outline: none;
    font-family: Commissioner;
    font-size: 0.9em;
    font-weight: 300;
    color: #FFF;
    background-color: #448850;
    cursor: pointer;
    padding: 10px;
    border-radius: 3px;
    text-shadow: 1px 1px 0px #000;
    max-width: 100px;
    min-width: 100px;
}

.button_input:hover{
    background-color: #447750;
}