/* AppLayout */
.page-contents {
    height: calc(100vh - 62px)
}
.loader {
    position: fixed;
    height: 50px;
    width: 50px;
    top:calc(50% - 50px/2);
    left:calc(50% - 50px/2);
}
.loader {
    border-right-color: #ffffff;
    -webkit-animation: spinner 1s linear infinite;
    animation: spinner 1s linear infinite;
}
@-webkit-keyframes spinner {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
@keyframes spinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* accounts */
.accounts-form > label {
    width: 100%;
    height: 100%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    align-items: center;
    display: flex;
}

/* accounts */
.accounts-form > input {
    width: 100%;
    height: 100%;
    padding: 0.25rem 0.75rem;
    display: flex;
    border-width: 1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
