.cim-nl-wrapper {
  padding: 20px;
}

.cim-nl-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff200;
  border-radius: 18px;
  padding: 18px 22px;
  border: 2px dashed #000;
  gap: 20px;
}

.cim-nl-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cim-nl-icon img {
  width: 50px;
  height: 50px;
}

.cim-nl-text{
  margin-top: 10px;
}

.cim-nl-text span {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.cim-nl-text strong {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  font-family: 'Anek Devanagari', sans-serif;
}

.cim-nl-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  border: 2px solid #000;
}

.cim-nl-input {
  border: none;
  outline: none;
  padding: 12px 18px;
  font-size: 16px;
  width: 260px;
}

.cim-nl-button {
  background: #00a651;
  color: #fff;
  border: none;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border-left: 2px solid black;
  border-radius: 50px 0 0 50px;
}

.cim-nl-button:hover {
  background: #008f45;
}

/* Responsive */
@media (max-width: 768px) {
  .cim-nl-box {
    flex-direction: column;
    align-items: stretch;
  }

  .cim-nl-form {
    width: 100%;
  }

  .cim-nl-input {
    width: 100%;
  }
}
