.rc-container-sm {
    max-width: 600px;
}

.rc-brand {
    display: flex;
    align-items: center;
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(76 57 70 / 28%);
    z-index: 9999;
  }
  
  .spinner {
    border: 4px solid #4c3946;
    border-top: 4px solid #ff6337;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  