* {
  box-sizing: border-box;
}

.login-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  font-family: "Roboto", sans-serif;
  font-size: 13px;
}

.login-modal__pane {
  position: relative;
  background-color: #fff;
  border-radius: .25em;
  width: 100%;
  max-width: 400px;
  padding: 30px;
  text-align: center;
  color: #58595b;
}

.login-modal__pane > *:first-child {
  margin-top: 0;
}

.login-modal__pane > *:last-child {
  margin-bottom: 0;
}

.login-modal__pane p {
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 8px;
}

.login-modal__pane hr {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 20px 0;
}

.login-modal__pane .access-button {
  display: flex;
}

.login-modal__close {
  position: absolute;
  top: 30px;
  right: 30px;
}

.login-modal__logo {
  display: inline-block;
  margin: 0 0 20px;
}

.login-modal__pane-group {
  margin-bottom: 30px;
}

.access-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  padding: .625em 1.25em;
  border: 1px solid;
  transition: all .2s ease;
  text-decoration: none;
  margin: 0 0 15px;
}

.access-button:hover {
  cursor: pointer;
}

.access-button--primary {
  background-color: #E4173F;
  border-color: #b71232;
  color: #fff;
}

.access-button--primary:hover {
  background-color: #ea2c51;
  border-color: #ce1539;
}

.access-button--secondary {
  background-color: #f7f8fa;
  border-color: #d8dde6;
  color: #4c4f53;
}

.access-button--secondary:hover {
  background-color: #fff;
  border-color: #e7eaf0;
}

.login-modal__read-more-link {
  text-decoration: none;
  color: #E4173F;
  font-size: 11px;
}

.login-modal__read-more-link:hover {
  text-decoration: underline;
}