.video-upload-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  max-width: 400px;
  margin: 40px auto;
  box-sizing: border-box;
}

.video-upload-form h2 {
  text-align: center;
  color: #333;
}

.video-upload-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-upload-form label {
  font-weight: bold;
  color: #444;
}

.video-upload-form input[type="text"],
.video-upload-form input[type="file"],
.video-upload-form input[type="number"] {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.upload-btn {
  margin-top: 10px;
  background: linear-gradient(to right, #05a4fd, #6c4afe);
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.upload-btn:hover {
  background: linear-gradient(to right, #049ae8, #5a3ee0);
}



.switch-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  color: #444;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
  margin-left: 10px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  background-color: #ccc;
  border-radius: 34px;
  top: 0; left: 0;
  right: 0; bottom: 0;
  transition: 0.4s;
}

.slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #05a4fd;
}

input:checked + .slider::before {
  transform: translateX(22px);
}







