body{
    /*height: 100%;*/
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-box-container{
    padding-top: 10px;
    padding-bottom: 10px;
}
.login-box{
    flex: none;
    background-color: #fff;
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.125);
}
input, select, input[type="text"]{
    -webkit-border-radius: 0;
    -moz-border-radius: 0 ;
    border-radius: 0 ;
    border-width: ;
    padding: 10px;
    border:1px solid #c9c9c9;
    width: 100%;
    -webkit-appearance: none;
}
select {
    -webkit-appearance: menulist-button;
}
input[type="text"]:enabled, select:enabled{
    background: #fff;
}
.title{
    font-size:24px;
    margin-bottom: 15px;
}
.darker{
    background-color: rgba(0,0,0,0.3);
    color: #fff;
    padding: 16px;
    line-height: 26px;
    text-shadow: 1px 1px #000;
}
a.highlight{
    color: #fff;
}
hr{
    margin-top:0;
    margin-bottom: 15px;
}
.primeiroacesso{
    display: block;
    color: #444444;
    background-color: #fff;
    font-weight: normal;
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid #ccc;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    text-decoration: none;
    margin-bottom: 15px;
}
.primeiroacesso:hover{
    color: #444444;
    background-color: #e6e6e6;
    border-color: #adadad;
    text-decoration: none;
}
@media (max-width: 768px){


    .login-box, .register-box {
        width: 90%;

        margin-left: auto;
        margin-right: auto;
    }

    .darker{
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

}