@import url('https://unpkg.com/98.css');

body {
  background-color: #008080;
  margin: 0;
  padding: 0;
  font-family: 'Pixelated MS Sans Serif', Arial;
  height: 100vh;
  overflow: hidden;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.window {
  width: 300px;
  z-index: 10;
}

.desktop-icons {
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 20px;
}

.icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 64px;
  cursor: pointer;
  color: white;
  text-shadow: 1px 1px 0px black;
}

.icon img {
  width: 32px;
  height: 32px;
  margin-bottom: 5px;
}

.info-widget {
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: right;
  color: white;
  text-shadow: 1px 1px 0px black;
  font-size: 14px;
}

.user-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 24px;
  background: silver;
  display: flex;
  align-items: center;
  padding: 0 5px;
  font-size: 12px;
  box-shadow: inset 1px 1px #dfdfdf, inset -1px -1px #0a0a0a, inset 2px 2px #fff, inset -2px -2px #808080;
  z-index: 200;
}

.taskbar {
  position: fixed;
  bottom: 24px;
  left: 0;
  right: 0;
  height: 28px;
  background: silver;
  border-top: 2px solid white;
  display: flex;
  align-items: center;
  padding: 2px;
  z-index: 100;
}
