.ccd-wrapper {
  display: flex;
  border-radius: 24px;
  overflow: hidden;
  font-family: sans-serif;
  max-width: 700px;
  color: #fff;
  flex-direction: row;
}

.ccd-left {
  flex: 1;
  background-color: #00b4b4;
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: left;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.4;
  border-right: 2px dashed #fff;
  position: relative;
}

.ccd-left::before,
.ccd-left::after {
  content: '';
  position: absolute;
  right: -12px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  z-index: 2;
}

.ccd-left::before {
  top: -12px;
}

.ccd-left::after {
  bottom: -12px;
}

.ccd-right {
  flex: 2;
  background-color: #00c4c4;
  padding: 24px 24px 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.ccd-right::before,
.ccd-right::after {
  content: '';
  position: absolute;
  left: -12px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  z-index: 2;
}

.ccd-right::before {
  top: -12px;
}

.ccd-right::after {
  bottom: -12px;
}

.ccd-code {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.ccd-copy-btn {
  background: #fff;
  color: #00b4b4;
  border: none;
  padding: 12px 40px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ccd-copy-btn:hover {
  opacity: 0.9;
}

@media (max-width: 767px) {
  .ccd-left {
    padding: 15px;
    font-size: 12px;
  }

  .ccd-code {
    font-size: 14px;
  }

  .ccd-copy-btn {
    padding: 5px 20px;
    font-size: 16px;
  }

  
}