body {
  /* font-family: "Poppins", sans-serif; */
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
  min-height: 100vh;
  display: flex-colomn;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.signup-container {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 900px;
  width: 100%;
  margin: 0 auto !important;
}

.signup-header {
  background: linear-gradient(135deg,
      #012d58,
      #004080,
      #0d6efd);
  color: white;
  text-align: center;
  padding: 2rem;
  position: relative;
}

.signup-header::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 40px;
  background-color: white;
  border-radius: 50% 50% 0 0;
}

.signup-form {
  padding: 2rem;
}

.form-control:focus {
  border-color: var(--affiliate-primary);
  box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.25);
}

.form-floating>label {
  color: #6c757d;
}

.form-check-input:checked {
  background-color: var(--affiliate-primary);
  border-color: var(--affiliate-primary);
}

.btn-primary {
  background: linear-gradient(135deg,
      #012d58,
      #004080,
      #0d6efd);
  border: none;
  border-radius: 30px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg,
      var(--affiliate-secondary),
      var(--affiliate-primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(67, 97, 238, 0.4);
}

.password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
  color: #6c757d;
}

.form-floating .password-toggle {
  top: 33px;
}

.social-signup {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.facebook {
  background-color: #3b5998;
}

.google {
  background-color: #db4437;
}

.twitter {
  background-color: #1da1f2;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
}

.divider hr {
  flex: 1;
  border-color: #e0e0e0;
}

.divider span {
  padding: 0 1rem;
  color: #6c757d;
  font-size: 0.875rem;
}

.signup-image {
  background: url("https://images.unsplash.com/photo-1573164713988-8665fc963095?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=988&q=80") center/cover;
  height: 100%;
  border-radius: 20px 0 0 20px;
}

/* Password strength meter */
.password-strength-meter {
  height: 5px;
  width: 100%;
  background-color: #e0e0e0;
  margin-top: 0.5rem;
  border-radius: 10px;
  overflow: hidden;
}

.password-strength-meter .strength-value {
  height: 100%;
  width: 0;
  transition: width 0.3s ease;
  border-radius: 10px;
}

.strength-text {
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.strength-weak .strength-value {
  width: 25%;
  background-color: #dc3545;
}

.strength-fair .strength-value {
  width: 50%;
  background-color: #ffc107;
}

.strength-good .strength-value {
  width: 75%;
  background-color: #198754;
}

.strength-strong .strength-value {
  width: 100%;
  background-color: #20c997;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.signup-content {
  animation: fadeIn 0.5s ease-out;
}

/* Error messages */
.error-message {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: none;
}

.is-invalid+.error-message {
  display: block;
}

.is-invalid {
  border-color: #dc3545 !important;
}

.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .signup-container {
    margin: 1rem;
    border-radius: 15px;
  }

  .signup-image {
    display: none;
  }

  .signup-header {
    padding: 1.5rem;
  }

  .signup-form {
    padding: 1.5rem;
  }
}