* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.navbar {
  background-color: #3c4b3f;
  padding: 10px 20px; /* Adjusted padding for better alignment */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0px;
  padding-bottom: 0px;
}

.logo img {
  height: 80px; /* Logo size */
}

.nav-links {
  list-style: none;
  display: flex;
  padding: 0;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.auth-buttons {
  display: flex;
  gap: 10px;
}

.auth-buttons .btn {
  padding: 10px 15px;
  background-color: #ffd700;
  color: black;
  border-radius: 5px;
  text-decoration: none;
}

.container {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 500px; /* Set max-width for better appearance */
  width: 90%; /* Full width on small screens */
  margin: 20px auto; /* Center the container */
}

h2 {
  color: #3c4b3f;
  margin-bottom: 15px; /* Space below heading */
}

input,
textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background-color: #3c4b3f;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}

button:hover {
  background-color: #2a3b31;
}

.message {
  margin-top: 10px;
  text-align: center;
  color: green;
}

footer {
  background-color: #3c4b3f;
  color: #fff;
  padding: 10px; /* Adjusted padding for a smaller footer */
  text-align: center;
  width: 100%;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 5px; /* Add some space above social links */
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px; /* Smaller icon size */
  height: 30px; /* Smaller icon size */
  background-color: #444;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 14px; /* Adjusted font size */
  transition: background-color 0.3s, color 0.3s;
}

.social-icon:hover {
  background-color: #555;
}
