* {
    margin: 0 auto;
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* HTML: <div class="loader"></div> */
.loader {
    height: 4px;
    width: 130px;
    background: no-repeat linear-gradient(#6100ee 0 0),no-repeat linear-gradient(#6100ee 0 0),#d7b8fc;
    background-size: 60% 100%;
    animation: l16 3s infinite;
}
@keyframes l16 {
    0%   {background-position:-150% 0,-150% 0}
    66%  {background-position: 250% 0,-150% 0}
    100% {background-position: 250% 0, 250% 0}
}

html, body {
    width: 100%;
    height: 100%;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
}

body {
    background: rgb(244,244,244);
    background: -moz-linear-gradient(90deg, rgba(244,244,244,1) 0%, rgba(223,227,238,1) 50%, rgba(241,241,241,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(244,244,244,1) 0%, rgba(223,227,238,1) 50%, rgba(241,241,241,1) 100%);
    background: linear-gradient(90deg, rgba(244,244,244,1) 0%, rgba(223,227,238,1) 50%, rgba(241,241,241,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f4f4f4",endColorstr="#f1f1f1",GradientType=1);

    background: url('../images/profile-bg.jpg') no-repeat center center fixed;
    background-size: cover;
}

#container {
    width: 95%;
    max-width: 450px;
    margin: 0 auto;
    min-height: 100%;
}

#wrapper {
    margin: 1em 0;
    padding: 1em;
}


/* utilities */
h1 {
    font-size: 20px;
}
h2 {
    font-size: 18px;
}

.card {
    border-radius: 10px;
    border: none;
    box-shadow: 0 0 40px rgba(0,0,0,0.1);
}

.card-header {
    width: 100%;
    background:transparent;
    font-weight: 700;
    padding: .6em 1.5em;
}
.card-body {
    margin: 0 0.5em;
}
.form-group {
    margin-bottom: 1em;
}
.form-group label {
    font-size: smaller;
}
.form-check {
    padding-top: .25em;
    padding-bottom: .25em;
}
.form-check:hover {
    background: rgba(0,0,0,0.05);
}
small {
    font-size: 11px;
    line-height: 15px;
    display: block;
}
input[readonly] {
    background: #fff!important;
}