.parvus-club-shop-outer-section {
  background-color: #f3f3f3;
  padding: 2rem 1rem;
}

.club-login-modal {
  margin: 2rem auto;
  background: rgb(255, 255, 255);
  width: 400px;
  max-width: 100%;
  padding: 2rem;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.07);
  border-radius: 8px;
}

.club-login-modal h2 {
  font-weight: 600;
  margin-bottom: 2rem;
  position: relative;
}

.club-login-modal form {
  display: flex;
  flex-direction: column;
}

.club-login-modal .input-field {
  position: relative;
  margin-bottom: 1.5rem;
}

.club-login-modal form .input-field:first-child {
  margin-bottom: 1.5rem;
}

.club-login-modal .input-field input {
  outline: none;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.7);
  width: 100%;
}

.club-login-modal .input-field input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.club-login-modal .footer {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}

.club-login-modal .footer span {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.8rem;
  text-align: center;
}

/* Loading spinner */
.loading-state {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 5px solid #ddd;
  border-top-color: #FF5CAD;
  animation: loading 1s linear infinite;
}

@keyframes loading {
  to {
    transform: rotate(360deg);
  }
}

/* Error message */

.club-login-error {
  display: flex;
  align-items: center;
  background-color: #e9e9e9;
  padding: 0.5rem;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

#club-login-error-message {
  margin-left: 0.5rem;
}