.login-container {
  display: flex;
  flex-direction: row;
  width: 100vw;
  height: 100vh;
}

div > p {
  font-size: 28px;
  margin: 16px;
}

.img-carousel {
  width: 55vw;
  height: 100vh;
  object-fit: cover;
}

.img-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-sidebar {
  height: 100vh;
  width: 45vw;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.menu-header, .menu-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.menu-header img {
  width: 64%;
  margin: 24px;
}

.icons-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.code-auth {
  text-align: center;
}

.code-auth button {
  font-size: 16px;
  padding: 8px 24px;
  margin: 8px;
  border: none;
  border-radius: 12px;
  background-color: #B1E4FB;
  color: #002436;
}

.video-player-container {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.close-button {
  position: absolute;
  top: 0;
  right: 0;
  margin: 10px;
  padding: 10px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.close-button:hover {
  background-color: #555;
}

.hidden {
  display: none;
}

.icons-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.icon-message {
  margin: 12px;
}

.icons-status {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.icons-status img {
  width: 200px;
  height: 200px;
  padding: 8px;
}

.icons-status img.focused {
  background-color: #B1E4FB;
  border-radius: 100%;
}

.icon-message {
  margin-top: 10px;
}

.code-auth {
  display: none;
  margin-top: 20px;
}

.access-code {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 12px;
}

.access-code-char {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 4px;
  padding: 4px 20px;
  background-color: #B1E4FB;
  color: #002436;
  border-radius: 100%;
}

#vid1 {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  visibility: hidden;
  object-fit: fill;
}

#vid2 {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px; 
  visibility: hidden;
  object-fit: fill;
}

#auth-after-loading > button,
#noauth-after-loading > button {
  font-size: 16px;
  padding: 8px 24px;
  margin: 8px;
  border: none;
  border-radius: 12px;
  background-color: #B1E4FB;
  color: #002436;
}

@media (max-width: 1601px) {
  div > p {
    font-size: 20px;
    margin: 8px;
  }

  .icons-status img {
    width: 140px;
    height: 140px;
    padding: 4px;
  }
}