body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f3f3f3;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  border: 3px solid #FFD700; /* Borde amarillo */
  position: relative;
}

h1 {
  text-align: center;
  color: #111;
  font-weight: bold;
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 10px;
}

h1::before {
  content: "🚕";
  position: absolute;
  left: 0;
  right: 0;
  top: -35px;
  font-size: 2rem;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 10px;
  font-weight: bold;
}

input {
  padding: 8px;
  margin-top: 5px;
  border: 2px solid #ccc;
  border-radius: 5px;
}

.boton-ubicacion,
button {
  margin-top: 15px;
  background: #FFD700; /* Amarillo taxi */
  color: black;
  border: 2px solid black;
  padding: 10px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.boton-ubicacion:hover,
button:hover {
  background: #e6c200;
}

#loader {
  margin-top: 15px;
  color: #555;
  font-weight: bold;
  text-align: center;
  width: 100%;
}

.hidden {
  display: none !important;
}

#mensajeConfirmacion {
  margin-top: 20px;
  color: green;
  font-weight: bold;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#mensajeConfirmacion.visible {
  opacity: 1;
}

  #splash-screen {
    position: fixed;
    background: #fff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }


