:root {
  --primary-color: #6a0dad;
  --bg-color: #1a1a1a;
  --text-color: #fff;
  --input-bg: #2c2c2c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px;
}

.slider-wrapper {
  background: #222;
  border-radius: 12px;
  padding: 30px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 0 30px rgba(106, 13, 173, 0.5);
  position: relative;
  overflow: hidden;
}

.slider-form {
  position: relative;
}

.slide {
  display: none;
  animation: fadeIn 0.4s ease forwards;
  transition: all 0.3s ease;
}

.slide.active {
  display: block;
}

h2 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

label,
input,
select {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  font-size: 16px;
}

input,
select {
  background-color: var(--input-bg);
  color: var(--text-color);
  border: 1px solid #444;
  padding: 10px;
  border-radius: 6px;
}

input::placeholder {
  color: #bbb;
}

.checkbox {
  font-size: 14px;
  display: flex;
  align-items: center;
}

.checkbox input {
  margin-right: 8px;
}

.button-group {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

button {
  flex: 1;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  background-color: var(--primary-color);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #5b009b;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 500px) {
  .slider-wrapper {
    padding: 20px;
  }

  button {
    padding: 10px;
    font-size: 14px;
  }
}
.logo-container {
  text-align: center;
  margin-bottom: 25px;
}

.logo-container img {
  max-width: 160px;
  height: auto;
  filter: drop-shadow(0 0 5px rgba(106, 13, 173, 0.4));
}
