body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background: #222;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.form-container {
  width: 90%;
  max-width: 600px;
  padding: 20px;
  background: #222;
  border-radius: 5px;
  text-align: left;
  box-sizing: border-box;
}

.logo-img {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.img {
  width: 100px;
  height: auto;
}

.form-group {
  margin-bottom: 20px;
}

input[type="text"],
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #555;
  border-radius: 4px;
  background-color: #333;
  color: white;
  font-size: 16px;
  box-sizing: border-box;
  margin-top: 10px;
}

.btn {
  background-color: #6200ee;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #7c4dff;
}

.next-btn {
  margin-top: 30px;
}

/* Адаптация для мобильных устройств */
@media (max-width: 480px) {
  .form-container {
    padding: 15px;
  }

  input[type="text"],
  select {
    font-size: 14px;
    padding: 8px;
  }

  .btn {
    padding: 10px 15px;
    font-size: 14px;
  }

  .img {
    width: 80px;
  }
}