* {
  box-sizing: border-box;
}

body {
  margin: 0;
  position: relative;
  overflow-x: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 780px;
  max-height: 100vh;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.input-container {
  width: 100%;
  padding: 32px 16px;
  position: relative;
  overflow: hidden;
}

.input-container::before {
  content: "";
  position: absolute;
  inset: -24px -16px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.85) 100%
  );
  backdrop-filter: blur(24px);
  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.25) 20%,
    rgba(0, 0, 0, 1) 60%,
    rgba(0, 0, 0, 1) 100%
  );
  mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.25) 20%,
    rgba(0, 0, 0, 1) 60%,
    rgba(0, 0, 0, 1) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.input {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 12px;
  padding: 20px 16px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 300;
  color: #86909c;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.button {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 12px;
  padding: 20px 16px;
  background-color: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.button-title {
  line-height: 1.1;
}

.button-subtitle {
  font-size: 12px;
  font-weight: 300;
  color: #fff;
  opacity: 0.6;
  line-height: 1.1;
}

.button-badge {
  position: absolute;
  top: -2px;
  right: -4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 8px;
  background: linear-gradient(90deg, #f2e2ca 0%, #eacb99 100%);
  color: #7b4d1f;
  font-size: 12px;
  font-weight: 400;
  border-radius: 999px;
  pointer-events: none;
  white-space: nowrap;
}

.badge-icon {
  width: 14px;
  height: 14px;
}

.info-images {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.info-images img {
  width: 100%;
  display: block;
}
