/* Reset some default styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #2c3e50; /* A nice dark blue-gray color */
  margin-bottom: 10px;
}

main {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

a {
  color: #3498db; /* A bright blue color for links */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  padding-left: 20px;
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 600px) {
  main {
    margin: 10px;
    padding: 15px;
  }
}

/* Center the form and set max-width */
form {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 15px; /* Adds spacing between form fields */
}

/* Style each input field */
form div {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 16px;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #0073e6; /* Light blue for focus */
}

/* Style the submit button */
button[type="submit"] {
  padding: 10px 15px;
  font-size: 16px;
  background-color: #0073e6;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: flex-start; /* Aligns the button to the left */
}

button[type="submit"]:hover {
  background-color: #005bb5; /* Darker blue on hover */
}

/* Styling for the installation button */
.install-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  background-color: #0073e6;
  text-decoration: none;
  border-radius: 25px;
  box-shadow: 0 4px 6px rgba(0, 115, 230, 0.3);
  transition: all 0.3s ease;
  text-align: center;
}

.install-button:hover {
  background-color: #005bb5; /* Darker blue on hover */
  box-shadow: 0 6px 12px rgba(0, 91, 181, 0.4);
  transform: translateY(-2px); /* Slight lift effect */
}

.install-button:active {
  background-color: #004494; /* Even darker blue on click */
  box-shadow: 0 3px 6px rgba(0, 91, 181, 0.3);
  transform: translateY(0); /* Reset lift effect */
}
