#headerTitle {
    position: relative;
    font-family: ESD;
    text-align: center;
    font-style: italic;
    font-size: 32px;
}

#authLogin {
    position: relative;
    margin: 0px auto;
    width: 100%;
    text-align: left;
}

#authLogin-min {
    position: relative;
    margin: 0px auto;
    padding: 50px;
    width: 400px;
    background-color: #f3f3f3;
    text-align: left;
    border-radius: 0.5em
}

#lock-modal {
    background-color: black;
    opacity: 0.75;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}

#loading-circle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 60px;
    height: 60px;
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    animation: spin 0.6s ease-in infinite;
    display: none;
  }
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }