#page-access {
  padding-bottom: 850px;
}

.access-card {
  display: flex;
  gap: 5px;
  margin: 10px 20px;
  background-color: rgba(255, 255, 255, 0.059);
  padding: 15px;
  border-radius: 20px;
}

.access-card-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.access-card-text-second {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.427);
}

.access-card-button {
  width: 80%;
  cursor: pointer;
  color: white;
  border: none;
  background-color: #b637bc;
  border-radius: 20px;
  padding: 10px;
  transition:
    background-color 0.2s ease,
    transform 0.15s ease;
}

.access-card-button:hover {
  background-color: #9b2ea1;
}

.access-card-button:active {
  transform: scale(0.99);
}


.access-card-logo {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  opacity: 50%;
  background-color: rgba(255, 255, 255, 0.212);
  padding: 5px;
  box-sizing: content-box;
  border-radius: 7px;
}

.access-link {
  display: flex;
  margin: 10px 20px 0 20px;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.059);
  padding: 15px;
  border-radius: 20px;
  gap: 10px;
}

.access-link-text-second {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.427);
}

.access-link-link {
  display: flex;
  position: relative;
  cursor: pointer;
  flex-direction: row;
  z-index: 10;
  height: 3rem;
  border: none;
  border-radius: 10px;
  padding: 10px;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.access-link-link-text {
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
}

.access-link-icon {
    padding: 5px;
}