*,
*:before,
*:after,
html, body{
    margin: 0;
    padding: 0;
}
html,body{
    height: 100%;
}
body{
    background: url(../images/bg.jpg) repeat #434a54;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
}
a,a:hover,a:focus{
    text-decoration: none;
}
.mr-0{
    margin-right: 0!important;
}
.login-wrapper{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    text-align: center;
}
.logout-group{
    margin-bottom: 5em;
}
.login-container{
    align-self: center;
}
.logo-container{
    margin-bottom: 20px;
}
.logout-cnt{
    margin-bottom: 20px;
    font-size: 1.75em;
    background-color: #303741;
    padding: 10px 25px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.login-btn,.signin-btn{
    background-color: #18a54c;
    /* border-radius: 6px; */
    display: inline-block;
    padding: 10px 2em;
    color: #fff;
    transition: all ease 0.3s;
}
.login-btn:hover, .signin-btn:hover{
    background-color: #11b94f;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
}

.signin-wrapper{
    display: inline-block;
    padding: 10px;
    /*background-color: rgba(255,255,255,0.2);*/
    border-radius: 5px;
}
.signin-wrapper h4{
    margin-bottom: 20px;
    position: relative;
}
.signin-wrapper h4:before,
.signin-wrapper h4:after{
    content: "";
    display: block;
    position: absolute;
    background-color: rgba(255,255,255,0.3);
    height: 1px;
    top: 12px;
    left: 0;
    width: 80px;
}
.signin-wrapper h4:after{
    right: 0;
    left: auto;
}
.signin-btn{
    background-color: #fff;
    border-radius: 3px;
    margin-right: 10px;
    width: 70px;
    height: 25px;
    background-size: 80px;
    background-repeat: no-repeat;
    background-position: center;
}
.signin-btn.google{
    background-image: url(../images/google-logo.svg);
}
.signin-btn.office{
    background-image: url(../images/office-365-logo.svg);
    background-size: 95px;
}
.signin-btn:hover{
    background-color: #eee;
}
.signin-btn img{
    vertical-align: middle;
}
.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn:hover {
    color: #212529;
    text-decoration: none;
}
.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}
.logout-cnt.warning,
.logout-cnt.danger {
    border-width: 1px;
    border-style: solid;
    border-radius: 6px;
    color: #fff;
    font-size: 1.3em;
}
.logout-cnt.warning {
    border-color: #ffb734;
    color: #ffb734;
}
.logout-cnt.danger {
    border-color: #ff4b34;
    color: #ff4b34;
}
.btn-go-back{
    background-color: #18a54c;
    border-radius: 6px;
    color: #fff;
    padding: 10px 15px;
}
.btn-go-back:hover{
    color: inherit;
    background-color: #0f8b3d;
}