* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.page-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('static/img/background/nt-background.jpg');
  background-size: cover;
  background-position: center center;
  z-index: 1;
}

.page-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.card {
  position: relative;
  z-index: 3;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 10px -4px rgba(0, 0, 0, 0.15);
  width: 400px;
  max-width: 90vw;
  padding: 16px;
}

.card-title {
  font-size: 24px;
  font-weight: 400;
  color: #333333;
  text-align: center;
  margin-top: 4px;
  margin-bottom: 24px;
  font-weight: 400;
}

.tenant-list {
  list-style: none;
}

.tenant-item {
  border-bottom: 1px solid #eeeeee;
}

.tenant-item:last-child {
  border-bottom: none;
}

.tenant-link {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: #555555;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 150ms ease, color 150ms ease;
}

.tenant-link:hover {
  background-color: #f5f5f5;
  color: #333333;
}

.tenant-item:first-child .tenant-link {
  border-radius: 4px 4px 0 0;
}

.tenant-item:last-child .tenant-link {
  border-radius: 0 0 4px 4px;
}

@media screen and (max-width: 480px) {
  .card {
    width: 90%;
    padding: 24px;
  }

  .card-title {
    font-size: 22px;
  }

  .tenant-link {
    padding: 14px 12px;
  }
}
