.multi-store-login-modal .login-form-multi input,
.multi-store-login-modal .login-form-multi textarea {
  width: 100%;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid #000 !important;
  box-shadow: none;
  color: #000;
}

.multi-store-login-modal .login-form-multi .form-select {
  width: 100%;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid #000 !important;
  box-shadow: none;
  color: #000;
}

.multi-store-login-modal .login-form-multi .pick-color {
  width: 100%;
  height: 50px;
}

.multi-store-login-modal .login-form-multi input:focus-visible {
  outline: none;
}

.multi-store-login-modal .close {
  top: 0 !important;
  right: 0;
}

.multi-signup-form .login-password {
  position: relative;
}
.multi-signup-form .login-password i.fa-regular {
  position: absolute;
  top: 40px;
  right: 10px;
  left: auto;
  cursor: pointer;
}

.login-form-multi .btn {
  color: var(--tfy-primary-btn-font-color);
  background-color: var(--tfy-primary-btn-bg-color);
  border: 1px solid var(--tfy-primary-btn-border-color);
  font-family: var(--tfy-btn-font);
  font-weight: var(--tfy-btn-font-weight);
  font-size: var(--tfy-btn-font-size);
  border-radius: 8px;
  padding: 5px;
}

.login-form-multi .btn:hover {
  color: var(--tfy-primary-btn-hover-font-color);
  background-color: var(--tfy-primary-btn-hover-bg-color);
  border: 1px solid var(--tfy-primary-btn-hover-border-color);
}

.multi-store-login-modal .close i {
  color: #000;
  font-size: 14px !important;
  border: 1px solid #000;
  border-radius: 3px;
  width: 25px;
  height: 25px;
  background: #fff;
  position: absolute;
  right: 0;
  top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.multi-store-login-modal .school-image img {
  width: 100px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}

.multi-store-login-modal .multi-create-store {
  display: none;
}

/* Loader Overlay Covering the Entire Form */
#multi-create-store .form-loader {
  position: absolute;
  /* top: 0; */
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  /* Light transparent background */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

#multi-signup-form .form-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  /* Light transparent background */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

/* Spinning Loader */
#multi-store-login-modal .spinner, #multi-create-store .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 0, 0, 0.3);
  border-top: 4px solid #007bff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Invalid Input Highlight */
.is-invalid {
  border-color: red !important;
}

.multi-store-login-modal .close i {
  color: #000;
  font-size: 14px !important;
  border: 1px solid #000;
  border-radius: 3px;
  width: 25px;
  height: 25px;
  background: #fff;
  position: absolute;
  right: 0;
  top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.multi-store-login-modal .school-image img {
  width: 100px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.multi-store-login-modal .multi-create-store {
  display: none;
}
.multi-store-login-modal .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 0, 0, 0.3);
  border-top: 4px solid #007bff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#multi-create-store .form-loader,
#multi-signup-form .form-loader {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark translucent background */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  -webkit-backdrop-filter: blur(0px);
          backdrop-filter: blur(0px); /* Slight blur effect */
  display: none; /* Initially hidden */
}

/* Container to Stack Loader & Text */
.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.progress-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: conic-gradient(rgb(41, 139, 12) 0%, rgba(255, 255, 255, 0.2) 0%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.progress-circle::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
}

.progress-text {
  position: absolute;
  font-size: 18px;
  font-weight: bold;
  color: black;
  z-index: 10;
}

/* Loading Message */
.loading-message {
  margin-top: 10px; /* Add space between loader and text */
  font-size: 16px;
  font-weight: bold;
  color: white;
  text-align: center;
}

.store-info-container {
  background: url("multi-school-create-bg.jpg") no-repeat center center;
  background-size: cover;
  padding: 40px;
  text-align: center;
  color: white;
  border-radius: 10px;
}
.store-info-container h1 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000 !important;
}
.store-info-container p {
  color: #000 !important;
  font-size: 18px;
  margin-bottom: 15px;
}
.store-info-container .button {
  display: inline-block;
  padding: 10px 20px;
  background: #007bff;
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease-in-out;
}
.store-info-container .button:hover {
  background: #0056b3;
}

.multi-store-info {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 15px;
  max-width: 400px;
  margin: 20px auto;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.multi-store-info .store-name {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}
.multi-store-info .store-website a {
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  color: #007bff;
  transition: color 0.3s;
}
.multi-store-info .store-website a:hover {
  color: #0056b3;
  text-decoration: underline;
}
