* {
  font-family: sans-serif;
}
body {
  background-image: url(../../images/signupimg.jpg);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  max-width: 100vw;
  max-height: 100vh;
  overflow: hidden;
}
form {
  display: flex;
  flex-direction: column;
}
input {
  margin: 5px;
  font-size: 18px;
  background-color: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid black;
  color: #b6b4b4;
}
button {
  border: none;
  font-size: 18px;
  margin-top: 1em;
  padding: 5px;
  background-color: #000;
  color: #b6b4b4;
  border-radius: 30px;
  transition-duration: 0.3s;
}
button:hover {
  transition-duration: 0.3s;
  cursor: pointer;
  box-shadow: 0 8px 32px 0 #000;
}
h1 {
  text-align: center;
}
a {
  color: #b6b4b4;
}
a:hover {
  text-decoration: none;
}
p {
  color: #b6b4b4;
}
.blur {
  content: "";
  position: absolute;
  background-image: url(../../images/signupimg.jpg); /* Same background image as the body */
  filter: blur(8px); /* Adjust the blur intensity as needed */
  z-index: -1; /* Place it behind the login form */
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 #000;
  width: 20%;
  height: 50%;
  border: 5px solid #b6b4b4;
}

.center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* gia na mhn fainontai ta arrow keys sto input type="number" */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
