section.event-sidebar {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

div.information-container {
  margin-top: 64px;
}

.register-container {
  width: 100%;
}

.members,
.nonmembers {
  background-color: white;
  margin: 16px 0;
  padding: 16px;
  border-radius: 4px;
  box-shadow: 0 .5px 2px rgba(0, 0, 0, .25);
}

.members h6,
.nonmembers h6 {
  margin-bottom: 8px;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.members a:hover,
.nonmembers a:hover {
  text-decoration: none;
}

.members button {
  background-color: #1b3167;
  border-radius: 4px;
}

.members button:hover {
  box-shadow: 0 1px 10px rgba(0, 0, 0, .15);
}

.nonmembers button {
  background-color: white;
  outline: 1px solid silver;
  border-radius: 4px;
  color: #1b3176;
}

.nonmembers button:hover {
  outline: 1px solid #1b3167;
}

button {
  transition: .5s;
}

.register-button a {
  display: flex;
  justify-content: center;
  align-items: center;
}

a.view-all-events {
  width: 100%;
  display: block;
  text-transform: uppercase;
  text-align: center;
  margin-top: 16px;
  padding: 8px 0;
  border-radius: 4px;
  transition: .5s;
}


a.view-all-events:hover {
  text-decoration: none;
  background-color: white;
  outline: 1px solid #1b3167;
}

section.no-access-message {
  background-color: #f6e6e5;
  border-radius: 4px;
  padding: 16px;
  box-shadow: 0 .5px 2px rgba(0, 0, 0, .25);
}

section.no-access-message {
  margin: 16px 0;
}

section.no-access-message p {
  margin-bottom: 16px;
  max-width: 300px;
}

section.no-access-message ul {
  margin-bottom: 16px;
}

section.no-access-message ul li {
  list-style-type: disc;
}


@media screen and (max-width: 841px) {
  section.no-access-message {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  section.no-access-message ul {
    width: 60%;
    text-align: left;
  }

  section.no-access-message p {
    max-width: none;
  }
}
