.input-background,.confirm-background,.error-background,.registrations-background,.success-background {
    display: none; 
    position: fixed;
    top: 0;
    bottom: 0;
    height: 100%;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.507);
    z-index: 1001;
}

.error-background {
    z-index: 1005;
}

.input-container,.confirm-container,.error-container,.registrations-container,.success-container {
    background-color: var(--control-background-color);
    display: flex;
    flex-direction: column;
    visibility: inherit;
    position: fixed;
    top: 50%;
    left: 50%;
    height: fit-content;
    max-height: 95vh;
    width: 500px;
    max-width: 100vw;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 10px;
    box-shadow: 0px 0px 10px black;
    z-index: 10002;
    padding: 5px 5px 5px 5px;
    text-align: left;
    justify-content: left;
    overflow-x: hidden;
    font-size: 20px;
    color: var(--font-color);
}

.registrations-container {
    font-size: 16px;
    width: 90%;
    max-width: unset;
max-height: 80vh;
}

.error-container {
    background-color: red;
    color: white;
}

.success-container {
    background-color: green;
    color: white;
}

.input-button,.error-button {
cursor: pointer;
color: black;
margin-top: 20px;
font-size: 18px;
align-content: center;
min-height: 40px;
background-color: white;
padding: 10px;
border-radius: 10px;
 text-align: center;
}

.error-button:hover,.error-button:hover {
opacity: 90%;
}


.loading-background {
    display: unset;
    position: fixed;
    top: 0;
    bottom: 0;
    height: 100%;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.507);
    z-index: 10001;
}
.spinner-box {
   display: flex;
   justify-content: center;
   position: fixed;
   top: 45%;
   bottom: 50%;
   left: 0;
   right: 0;
   min-height: fit-content;
}
.spinner {
   width: 56px;
   height: 56px;
   border-radius: 50%;
   background: conic-gradient(#0000 10%,#474bff);
   -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 9px),#000 0);
   animation: spinner-zp9dbg 1s infinite linear;

}

@keyframes spinner-zp9dbg {
   to {
      transform: rotate(1turn);
   }
}

  
    