

/* Global Styles */
body {
  font-family: Arial, sans-serif;
  text-align: center;
  align-items: center;
  background: url('pictures/background.jpg');
  background-size: cover;
  display: flex; /* Add Flexbox to the body */
  align-items: center; /* Center items vertically */
  justify-content: center; /* Center items horizontally */
  height: 100vh; /* Set body height to full viewport height */
}

.container {
  max-width: 400px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 10px;
}

h1 {
  margin-bottom: 20px;
}

form {
  display: center;
  flex-direction: column;
}

label {
  font-weight: bold;
}

input[type="text"] {
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  width: 30%;
  padding: 10px 20px;
  background-color: #ff5722;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #ff7043;
}

/* Media Query for Small Screens */
@media screen and (max-width: 480px) {
  .container {
    margin: 50px auto;
    max-width: 300px;
    padding: 15px;
  }
}
