.mvu-form {
  max-width: 640px;
  padding: 16px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  background: #fff;
}

.mvu-field {
  margin-bottom: 14px;
}

.mvu-rules {
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #f5f8ff;
  border: 1px solid #d7e2ff;
}

.mvu-rules p {
  margin: 0 0 6px;
  font-size: 13px;
}

.mvu-rules p:last-child {
  margin-bottom: 0;
}

.mvu-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.mvu-field input[type="text"],
.mvu-field input[type="email"],
.mvu-field input[type="file"],
.mvu-field textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid #c7c7c7;
  border-radius: 8px;
}

.mvu-consent label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 400;
}

.mvu-consent input[type="checkbox"] {
  margin-top: 2px;
}

.mvu-submit {
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  color: #fff;
  background: #1f5eff;
  font-weight: 600;
  cursor: pointer;
}

.mvu-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.mvu-progress-wrap {
  margin-top: 14px;
}

.mvu-progress-label {
  font-size: 13px;
  margin-bottom: 6px;
}

.mvu-progress {
  width: 100%;
  height: 14px;
  border-radius: 999px;
  background: #ececec;
  overflow: hidden;
}

.mvu-progress-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #1f5eff, #3b82f6);
  transition: width 0.2s ease;
}

.mvu-status {
  margin-top: 12px;
  font-weight: 600;
}

.mvu-status.is-success {
  color: #057a34;
}

.mvu-status.is-error {
  color: #b32020;
}

.mvu-closed {
  max-width: 640px;
  padding: 14px;
  border: 1px solid #f2b7b7;
  border-radius: 10px;
  background: #fff5f5;
  color: #9b1d1d;
  font-weight: 600;
}
