body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #1F0121;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

/* 📱 Contenedor central */
.container {
  position: relative;   /* ✅ Necesario para que .top-buttons funcione */
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto
}

/* 🔮 Logo Nequi */
.logo {
  font-size: 48px;
  font-weight: 700;
  color: #ebe6f4;
  text-align: center;
  margin-bottom: 80px;
  padding-top: 50px;
}

.logo .pink {
  color: #da0183;
}

/* 📞 Input del número */
.input-group {
  background-color: #4c334e;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 12px;
  margin-bottom: 8px; /* más real al diseño original */
}

.prefix {
  font-size: 18px;
  color: #d9b5d0;
  margin-right: 10px;
}

input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 18px;
}

input::placeholder {
  color: #fff7fe;
  opacity: 1;
}

/* 💰 Grupo de botones */
.button-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 100%;
  margin-top: 10px;
}

/* 🔘 Botones (Entrá y $) */
.btn-entra,
.btn-money {
  background-color: #da0183;
  color: white;
  border: none;
  border-radius: 12px;
  height: 56px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.btn-entra {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
}

.btn-money {
  width: 56px;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-entra:hover,
.btn-money:hover {
  opacity: 0.9;
}

/* 📞 Footer inferior */
.footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 380px;
  margin: 40px auto 60px;
  padding: 0 20px;
  font-size: 13.5px;
  color: #e0c0e8;
}

.footer-phone-icon svg {
  width: 18px;
  height: 18px;
}

.help-text {
  font-family: 'Redhatdisplay', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  color: white;
  letter-spacing: -0.3px;
  flex: 1;
  text-align: center;
  margin-left: -15px;
}

.footer-logo svg {
  width: 135px;
  height: 40px;
  opacity: 0.7;
}

.top-buttons {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 350px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  z-index: 9999; /* ✅ Para garantizar que estén encima */
}

.clave-btn,
.ayuda-btn {
  background: rgba(255, 255, 255, 0.12); /* Transparente estilo Nequi */
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  color: white;
  font-size: 14px;
  cursor: pointer;
  backdrop-filter: blur(4px); /* Truco visual */
  transition: 0.2s ease;
}

.clave-btn:active,
.ayuda-btn:active {
  transform: scale(0.95);
}
