* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(
    135deg,
    rgb(230, 177, 248) 0%,
    rgb(208, 151, 255) 50%,
    rgb(182, 120, 253) 100%
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.bg-decoration {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.bg-decoration:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
}

.bg-decoration:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: -100px;
  right: -100px;
}

.message {
  padding: 10px 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 0.95em;
  font-weight: 500;
  text-align: center;
  display: none;
}

.message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.walkin-container {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.steps-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  gap: 0;
}

.step {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: #999;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.step.active .step-circle {
  background: rgb(182, 120, 253);
  color: #fff;
  box-shadow: 0 4px 10px rgba(182, 120, 253, 0.4);
}

.step.completed .step-circle {
  background: #28a745;
  color: #fff;
  box-shadow: 0 4px 10px rgba(40, 167, 69, 0.4);
}

.step-label {
  font-size: 12px;
  color: #999;
  font-weight: 500;
  display: none;
}

.step.active .step-label,
.step.completed .step-label {
  display: block;
  color: #333;
}

.step-connector {
  width: 50px;
  height: 2px;
  background: #e0e0e0;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.step-connector.completed {
  background: #28a745;
}

.walkin-header {
  margin-bottom: 25px;
}

.walkin-header .logo {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, rgb(182, 120, 253), rgb(117, 20, 117));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
}

.walkin-title {
  font-family: "Poetsen One", sans-serif;
  color: rgb(117, 20, 117);
  margin-bottom: 8px;
  font-size: 24px;
  letter-spacing: 3px;
}

.walkin-subtitle {
  color: #666;
  font-size: 14px;
  margin-bottom: 5px;
}

.step-content {
  display: none;
}

.step-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-group {
  position: relative;
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.9em;
  color: #181818;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input[type="email"],
.form-group input[type="text"],
.form-group input[type="password"] {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1em;
  color: #333;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
}

.form-group input[type="email"]:focus,
.form-group input[type="text"]:focus,
.form-group input[type="password"]:focus {
  border-color: rgb(182, 120, 253);
  box-shadow: 0 0 0 3px rgba(182, 120, 253, 0.2);
  outline: none;
  background-color: #fff;
}

.password-toggle {
  position: absolute;
  right: 10px;
  top: 52px;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
  font-size: 1em;
  padding: 5px;
}

.password-toggle:hover {
  color: #333;
}

.otp-input-group {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 20px 0;
}

.otp-input-group input {
  width: 50px;
  height: 55px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  border: 2px solid #ddd;
  border-radius: 10px;
  outline: none;
  transition: all 0.3s ease;
  background: #f9f9f9;
  color: #333;
}

.otp-input-group input:focus {
  border-color: rgb(182, 120, 253);
  box-shadow: 0 0 0 3px rgba(182, 120, 253, 0.2);
  background: #fff;
}

.otp-input-group input.filled {
  border-color: #28a745;
  background: #f0fff0;
}

.otp-info {
  font-size: 13px;
  color: #666;
  margin-top: 10px;
}

.otp-info strong {
  color: rgb(117, 20, 117);
}

.resend-section {
  margin-top: 15px;
  font-size: 14px;
  color: #666;
}

.resend-section a {
  color: rgb(117, 20, 117);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.resend-section a:hover {
  text-decoration: underline;
}

.resend-section a.disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  width: 100%;
  padding: 15px;
  background-color: rgb(182, 120, 253);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(182, 120, 253, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
}

.btn-primary:hover {
  background-color: rgb(160, 100, 230);
  box-shadow: 0 8px 20px rgba(182, 120, 253, 0.6);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: rgb(117, 20, 117);
  border: 2px solid rgb(182, 120, 253);
  border-radius: 10px;
  font-size: 0.95em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  font-family: "Poppins", sans-serif;
}

.btn-secondary:hover {
  background: rgba(182, 120, 253, 0.1);
}

.back-link {
  display: block;
  margin-top: 15px;
  color: #666;
  font-size: 14px;
}

.back-link a {
  color: rgb(117, 20, 117);
  text-decoration: none;
  font-weight: 600;
}

.back-link a:hover {
  text-decoration: underline;
}

.password-strength {
  margin-top: 5px;
  font-size: 12px;
  padding: 5px;
  border-radius: 3px;
}

/* Responsive */
@media (max-width: 480px) {
  .walkin-container {
    padding: 30px 20px;
  }

  .walkin-title {
    font-size: 22px;
  }

  .otp-input-group input {
    width: 42px;
    height: 48px;
    font-size: 20px;
  }

  .step-connector {
    width: 30px;
  }

  .step-circle {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}
