

/* BUTTONS */

.btn.wait {
    position: relative;
}
.btn.wait:after {
    content: '\f3f4';
    font-family: "Font Awesome 5 Pro";
    font-size: 1rem;
    color: #fff;
    position: absolute;
    right: 8px;
    top: 1rem;
    width: 1rem;
    height: 1rem;
    line-height: 1rem;
    animation-name: spin;
    animation-duration: 1500ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}


/* LOGIN FORM */

html.login_form {
    min-height: 100%;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.login_form #app, 
.login_form main {
    min-height: 100%;
	padding-top:0 !important;
}

.login_form main {
    min-height: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
}

.login_form body {
    background-image: url(../img/login-background.png);
    background-position: bottom;
    min-height: 100%;
    width: 100%;
    background-size: cover;
    height: auto;
    position: relative;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#loginMessage.active {
    margin-bottom: .7rem;
    font-size: .75rem;
    font-weight: bold;
    line-height: 1rem;
    color: var(--danger);
    text-align: center;
}
#password-forgot-container {
	padding-left: 0;
	padding-right: 0;
}

#password-forgot-container a.btn-link i {
    margin-left: .25rem;
}
