@font-face {
    font-family: "Nunito";
    src: local("Nunito"),
        url("../fonts/Nunito/static/Nunito-Regular.ttf") format("truetype");
    font-size: medium;
    font-display: block;
}
html,
body {
  height: 98%;
  margin-top: 1%;
  font-family: "Nunito";
}

.form-signin {
  max-width: 330px;
  padding: 1rem;
}

.form-signin .form-floating:focus-within {
  z-index: 2;
}

.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* CSS */
.loading-spinner {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }


  .loading {
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .loading > div {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 4px;
  }
  
  .alert{
    max-width: 300px !important;
  }

  .view-licensekey {
    max-width: 650px;
    padding: 1rem;
  }