body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  overflow: hidden; /* Prevent scrolling of the whole page */
  background-image: url('../images/p.jpg');
  background-size: cover;
  height: 100vh;
  width: 100vw;
}



.form-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.form-field {
  margin-bottom: 20px;
}

.form-actions {
  margin-top: auto; /* Pushes the button to the bottom */
  text-align: center;
}

.form-actions button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
}

.form-actions button:hover {
  background-color: #0056b3;
}
