.wrapper-container {
  width: 100%;
  height: 100vh;
  overflow-y: auto;
}

.search-container {
  width: 480px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  /* transform: translate(-50%, -50%); */
  margin-left: -240px; /* Half of the width */
  margin-top: -100px; /* Adjust for dynamic height */
  text-align: center;
}

.ic-logo {
  height: 100px;
}

.box-search {
  width: calc(100% - 34px);
  position: relative;
}

.input-search {
  width: 100%;
  height: 56px;
  border-radius: 50px;
  border: 1px solid #ddd;
  position: relative;
  padding-left: 32px;
  font-size: 42px;
}

.btn-container {
  height: 100%;
  position: absolute;
  top: 6px;
  right: -28px;
}

.btn-search {
  background: #1975d2;
  color: #fff;
  padding: 10px 16px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
}

.btn-search:hover {
  background: #3d8ee0;
}

.ic-search {
  width: 24px;
  height: 24px;
  padding: 2px;
  float: left;
  margin-right: 6px;
}

@media screen and (max-width: 560px) {
  .search-container {
    width: 100%;
    padding: 0 16px;
  }

  .ic-logo {
    height: 80px;
  }
}

.masked-input {
  -webkit-text-security: disc;
  text-security: disc;
}
