
body {
  min-height: 100vh;
}

/* Center */
.success-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Card */
.success-wrapper .success-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  text-align: center;
}

/* Title */
.success-wrapper .title {
  color: #ff4f7b;
  font-size: 26px;
  margin-bottom: 8px;
}

.success-wrapper .subtitle {
  font-size: 13px;
  color: #777;
  margin-bottom: 25px;
}

/* Details */
.success-wrapper .details {
  margin-bottom: 25px;
}

.success-wrapper .row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
}

.success-wrapper .row span:first-child {
  color: #000;
  font-weight: 600;
}

.success-wrapper .row span:last-child {
  color: #444;
}

/* Buttons */
.success-wrapper .actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.success-wrapper .btn {
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 13px;
  cursor: pointer;
  border: none;
}

.success-wrapper .btn.primary {
  background: #ff4f7b;
  color: #fff;
}

.success-wrapper .btn.primary:hover {
  background: #e9446c;
}

.success-wrapper .btn.outline {
  background: #fff;
  color: #555;
  border: 1px solid #ccc;
}

.success-wrapper .btn.outline:hover {
  background: #f3f3f3;
}

/* Responsive */
@media (max-width: 480px) {
 .success-wrapper .success-card {
    padding: 25px 20px;
  }

  .success-wrapper .actions {
    flex-direction: column;
  }

  .success-wrapper .btn {
    width: 100%;
  }
}
