body {
background-color: bisque;
}

/* The sidebar menu */
.sidenav {
  height: 100%; /* Full-height: remove this if you want "auto" height */
  width: 160px; /* Set the width of the sidebar */
  position: fixed; /* Fixed Sidebar (stay in place on scroll) */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  background-color: #111; /* Black */
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 50px;
  border-right: solid #969696;
}

/* The navigation menu links */
.sidenav a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 1.5rem;
  color: #969696;
  display: block;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #f1f1f1;
}

/* Style page content */
.main {
  margin-left: 160px; /* Same as the width of the sidebar */
  padding: 0px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
}

.logo {
  margin-bottom: 30px;
}

.header {
  margin-top: 30px;
}

form {
  border: solid 2px gray;
  padding: 16px 16px;
  margin-top: 50px;
  font-size: 1.2rem;
  color: whitesmoke;
  background-color: #969696;
  border-radius: 5px;
}

form input, textarea {
  font-size: 1.2rem;
  padding: 10px 10px;
  border-radius: 5px;
}

#submit, #reset {
  cursor: pointer;
}

