* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.wrapper {
  z-index: 19999999;
  position: absolute;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
  color: dodgerblue;
}

.input-container {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
}

.icon {
  padding: 10px;
  background: dodgerblue;
  color: white;
  min-width: 50px;
  text-align: center;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.input-field {
  width: 100%;
  padding: 10px;
  outline: none;
  border: 1px solid #ddd;
  border-left: none;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.input-field:focus {
  border: 2px solid dodgerblue;
  border-left: none;
}

.btn {
  background-color: dodgerblue;
  color: white;
  padding: 15px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #1e90ff;
}

p {
  color: red;
  text-align: center;
}

/* span {
  z-index: -9999999;
  position: absolute;
  pointer-events: none;
}

span::before {
  content: '\f005';
  position: absolute;
  font-family: FontAwesome;
  color: #1e90ff;
  animation: moveShape 1s linear forwards;
}

@keyframes moveShape {
  0% {
    transform: translate(0) rotate(0deg);
    opacity: 0;
  }
  20%, 80% {
    opacity: 1;
  }
  100% {
    transform: translate(300px) rotate(20deg);
    opacity: 0;
  }
}
.cursor-dot{
    z-index: -99999;
    width: 30px;
    height: 30px;
    background: rgb(28, 115, 228);
    box-shadow: 0px 5px 10px 2px rgb(28, 115, 228) inset;  
}
.cursor-outline{
  z-index: -99999;
  width: 60px;
  height: 60px;
  border: 5px solid rgb(28, 115, 228);
}
.cursor-dot,
.cursor-outline{
  z-index: -99999;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  z-index: 10px;
  pointer-events: none;                    
} */