.cp-song-form-wrap {
  background: linear-gradient(180deg, #171717, #101010);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,.16);
  color: #fff;
}

.cp-song-form-notice {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 700;
}

.cp-song-form-success {
  background: rgba(25, 135, 84, .15);
  border: 1px solid rgba(25, 135, 84, .35);
  color: #d1ffe2;
}

.cp-song-form-error {
  background: rgba(220, 53, 69, .15);
  border: 1px solid rgba(220, 53, 69, .35);
  color: #ffe0e4;
}

.cp-song-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cp-song-form-field {
  margin-bottom: 16px;
}

.cp-song-form-field-full {
  width: 100%;
}

.cp-song-form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #fff;
}

.cp-song-form-field label span {
  color: #ffcf4a;
}

.cp-song-form-field input,
.cp-song-form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: #111;
  color: #fff;
  box-sizing: border-box;
  font-size: 15px;
}

.cp-song-form-field input:focus,
.cp-song-form-field textarea:focus {
  outline: none;
  border-color: #ffb82e;
  box-shadow: 0 0 0 3px rgba(255,184,46,.14);
}

.cp-song-form-help {
  margin: 6px 0 18px;
  color: #cfcfcf;
  font-size: 14px;
}

.cp-song-form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffd452, #ff9f1a);
  color: #111;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.20);
}

.cp-song-form-button:hover {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .cp-song-form-grid {
    grid-template-columns: 1fr;
  }

  .cp-song-form-wrap {
    padding: 18px;
    border-radius: 18px;
  }

  .cp-song-form-button {
    width: 100%;
  }
}
