body {
    background-color: lightgray;
}

div.login-box {    
    padding-top: 2em;
    margin: 0px !important;
}

/*div.login-box-body {
    position: relative;
    width: 360px;
}*/

section.content {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    display: flex !important;
    justify-content: center;
    margin-top: 102px !important;
}

div.overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    user-select: none;
    cursor: default;
    flex-direction: column;
}

.has-success .form-control-feedback {
    color: #00a903 !important;
}

.has-error .form-control-feedback {
    color: #e60500 !important;
}

.form-control.readonly {
    background-color: #f7f7f7 !important;
}

.loader {
    border: 2px solid #dcdcdc;
    border-radius: 50%;
    border-top: 2px solid #8a8a8a;
    animation: spin 0.8s linear infinite;
}

.small.loader {
    top: 32px !important;
    right: 10px;
    width: 20px;
    height: 20px;
}

.large.loader {
    width: 50px;
    height: 50px;
}
.loader-text {
    padding-top: 0.5em;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 360px) {
   /* .domain-email {
      float:left !important;
      margin-top: -2px;
   } */
   .p-3{
      padding: 3px !important;
    }   
}

@media (max-width: 320px) {
    div.login-box-body, div.register-box-body {
        height: 450px;
    }
    .domain-email{
        float:left !important; 
    }
 }
