body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: Arial, sans-serif;
  background-image: url('./jpg.jpg'); /* you can use the url of your background image or use a background color */
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.5); /* this will add a shadow effect on the background */
}
h1 {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
  border: 12px solid #333;
  border-radius: 10px;
  box-shadow: 20px 2px 10px #ccc;
  padding: 20px;
}
  
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 35px solid #333;
  border-radius: 10px;
  box-shadow: 17px 32px 23px #e91e63;
  padding: 40px;
  width: 50%;
  margin-bottom: 20px;
}

label {
  font-size: 18px;
  margin-bottom: 10px;
}

input {
  width: 100%;
  height: 40px;
  font-size: 18px;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  width: 30%;
  height: 50px;
  font-size: 18px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#result {
  font-size: 18px;
  margin-top: 20px;
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  background-color: #333;
  color: #fff;
  padding: 10px;
}
