.input-group {
  position: relative;
}

.custom-input {
  border: 1px solid rgb(60, 61, 61) !important;
  border-radius: 30px !important;
  background: transparent !important;
  font-size: 1rem !important;
  transition: border 150ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.user-label {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  background-color: transparent;
  padding: 0 0.2em;
  z-index: 1000;
}

.custom-input:focus,
.custom-input:valid {
  outline: none;
  border: 1.5px solid #1a73e8 !important;
}

.user-label.active {
  z-index: 1000;
  left: 15px;
  top: -2px;
  font-size: 11px;
  border-radius: 5px;
}

.select-input.ant-select.ant-select-outlined:not(.ant-select-customize-input)
  .ant-select-selector {
  background-color: transparent !important;
  border: 1px solid rgb(60, 61, 61);
  border-radius: 30px !important;
}

.ant-spin-nested-loading > div > .ant-spin {
  max-height: 100% !important;
}

.spinner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1); /* Optional: light overlay effect */
}

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 4px solid rgb(101, 157, 241);
  border-right: 4px solid transparent;
  box-sizing: border-box;
  animation: rotation 1.3s linear infinite;
  position: relative;
}

.loader::after {
  content: '';
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border-left: 4px solid #ab7ae0;
  border-bottom: 4px solid transparent;
  animation: rotation 0.65s linear infinite reverse;
}

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

