#top {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}


#top-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}


#top-overlay {
  position: absolute;
  top: 55%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  color: white;
}

#top-title {
  font-size: 38px;
  font-weight: 600;
  color: white;
}


#content {
  position: relative;
  z-index: 3;
  background: #141414;
  color: white;
  /* padding: 50px 10%; */
}

#login-container {
  position: absolute;
  right: 10%;
  top: 20%;
  background-color: #141414;
  border-radius: 8px;
  padding: 64px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#login-button {
  margin-left: auto;
}