/* Reset some default styles */
body, h1, h2, h3, h4, h5, h6, p, form, label, input, button {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Set a base font size and family */
body {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  background-color: #333;
  color: #fff;
}

/* Style the header */
h1 {
  text-align: center;
  padding: 20px;
  background-color: #222;
}

/* Style the form container for better mobile spacing */
form {
  max-width: 400px; /* Keep max-width for larger screens */
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #555;
  position: relative;
  background-color: #444;
}

/* Style the form elements for better spacing */
label {
  display: block;
  margin-bottom: 8px;
  color: #ccc;
}

input {
  width: 100%;
  padding: 10px;
  margin-bottom: 16px;
  box-sizing: border-box;
  background-color: #555;
  color: #fff;
  border: 1px solid #777;
}

input[type="submit"] {
  width: 100%;
  background-color: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* Hover styles */
input[type="submit"]:hover {
  background-color: #0056b3; /* Darker shade on hover */
}

/* Style for the h6 inside the form */
h6 {
  margin-top: 10px;
  font-size: 14px;
  color: #ccc;
  text-align: center;
}

/* Media query for smaller screens (mobile) */
@media screen and (max-width: 600px) {
  /* Adjust styles for better mobile spacing */
  form {
    max-width: 600px; /* Increase max-width for better mobile spacing */
    margin: 40px auto; /* Adjust margin for better mobile spacing */
  }
}
