
.page-login {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100vw;
    height: 100vh;
    max-height: 100%;
    max-width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.page-login-panel {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 250px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
}

.page-login-logo {
    width: 96px;
    height: 96px;
    max-height: 96px;
    margin-bottom: 0px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
    max-width: 100%;
    vertical-align: middle;
    display: inline-block;
    margin-bottom:12px
}
.input-login{
    display: block;
    width: 100%;
    height: 38px;
    padding: 16px 12px;
    margin-bottom: 10px;

    font-size: 14px;
    line-height: 20px;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    
    border: 1px solid #23b16c;
    border-radius: 4px;

    text-align: left;
}
.login-button{
    padding: 12px 32px;
    width: 100%;
    background-color: #23b16c;
    
    border: 0;
    border-radius: 8px;

    background-color: rgba(35, 177, 108, 0.1);
    -webkit-transition: background-color 200ms ease;
    transition: background-color 200ms ease;
    
    color: #23b16c;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}
.login-button:hover{
    background-color: rgba(35, 177, 108, 0.4);    
}