.domain-search-container {
  background-color: #3339F1;
  padding: 50px;
  border-radius: 12px;
  box-sizing: border-box;
}

.domain-search-title {
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
}
.domain-search-title span {
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}
.domain-search-title img {
  width: 28px;
  height: 28px;
}

.domain-search-subtitle {
  color: #ffffff;
  font-weight: 800;
}

.domain-search-box {
  gap: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.domain-search-input {
  padding: 16px 20px;
  border-radius: 6px;
  outline: none;
  border: 2px solid #FFFFFF;
  background-color: #3339F1;
  color: white;
  line-height: 18px;
  box-sizing: border-box;
}
.domain-search-input::placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.domain-search-button {
  padding: 10px 20px;
  background-color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 16px; /* Adjust as necessary */
}

/*1920*/
@media screen and (min-width: 1261px) {
  .domain-search-input {
    width: 840px;
  }
  .domain-search-subtitle {
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 40px;
  }
  .tw_button.search {
    height: 54px;
    padding: 16px 24px;
  }
}
@media screen and (max-width: 1260px) and (min-width: 768px) {
  .domain-search-input {
    width: 408px;
  }
  .tw_button.search {
    height: 54px;
    padding: 16px 24px;
  }
  .domain-search-subtitle {
    font-size: 32px;
    line-height: 46px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .domain-search-container {
    padding: 30px 20px;
    text-align: center;
  }
  .domain-search-title {
    margin-bottom: 1px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2px;
  }
  .domain-search-title span {
    color: #ffffff;
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
  }
  .domain-search-title img {
    width: 24px;
    height: 24px;
  }
  .domain-search-subtitle {
    font-size: 22px;
    line-height: 40px;
    margin-bottom: 40px;
  }
  .domain-search-box {
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }
  .domain-search-input {
    width: 295px;
    padding: 15px 16px;
  }
}
