html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden; /* 🔑 esto quita el scroll */
  overscroll-behavior: none; /* evita rebote iOS */
  font-family: Arial, sans-serif;
  background: #121212;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
  height: 100vh;
}

.container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 160px;
  margin-bottom: 24px;
}

.search-box {
  position: relative;
  width: 90%;
  max-width: 500px;
}

.search-box input {
  width: 100%;
  height: 44px;
  padding: 0 44px;
  border-radius: 24px;
  border: 1px solid #dfe1e5;
  font-size: 16px;
  outline: none;
}

.search-box input:focus {
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
  border-color: transparent;
}

.icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  fill: #9aa0a6;
}

.icon.left {
  left: 14px;
}

.icon.right {
  right: 14px;
}
