body {
  color: #1c262e;
}

.bg-purple {
  background-color: #4f008d;
}

.header {
  border-radius: 0 0 40px 40px;
}

.primary-btn {
  background-color: #ff375e;
  border-color: #ff375e;
  border-radius: 2px;
  min-height: 48px;
  width: 100%;
  color: #ffffff;
  font-size: 16px;
}

.primary-btn:hover,
.primary-btn:focus,
.primary-btn:active {
  background-color: #e53154 !important;
  border-color: #ff375e !important;
  color: #ffffff !important;
}

.secondary-btn {
  background-color: white;
  border: 1px solid #dfe0e6;
  border-radius: 2px;
  color: #ff375e;
  min-height: 48px;
  padding: 6px 16px;
}

.secondary-btn:hover,
.secondary-btn:focus,
.secondary-btn:active {
  background-color: #ff375e !important;
  border: 1px solid #dfe0e6 !important;
  color: #fff !important;
}

.container {
  max-width: 595px;
}

h1 {
  font-size: 20px;
  font-weight: normal;
}

.description {
  font-size: 16px;
}

.section {
  margin-bottom: 20px;
}

.label {
  margin-bottom: 10px;
  font-size: 14px;
}

.arabic {
  direction: rtl;
}

.box {
  border: 1px solid #dcdfe3;
  border-radius: 2px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.value {
  font-size: 14px;
  max-width: 180px;
  overflow-x: scroll;
  white-space: nowrap;
}

.copy-text {
  color: #ff375e;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid #dcdfe3;
}

.copied {
  color: #0b6535;
}

.sub-description {
  font-size: 28px;
}

@media screen and (min-width: 1024px) {
  .header {
    border-radius: 0 0 20px 20px;
  }

  h1 {
    font-size: 28px;
  }

  .description {
    font-size: 18px;
  }

  .value {
    font-size: 14px;
    max-width: 500px;
    overflow: auto;
    white-space: nowrap;
  }
}