body {
  min-height: 100vh;
  background: #d7dadc;
}

body.loginPage {
  background: url(https://source.unsplash.com/random/1920x1080/?condominio) center;
  background-size: cover;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flex {
  display: flex;
}

.disconnected {
  color: #842029;
  background-color: #f8d7da;
  border-bottom: 2px solid #f5a0a9;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
}

.login {
  width: 333px;
  left: 553px;
  top: 264px;

  background: #ffffff;
  border-radius: 5px;
  padding: 15px;
  text-align: center;
}

.login .logotipo {
  width: 180px;
}

.loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  text-align: center;
  cursor: progress;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000000;
}

header {
  height: 100px;
  background-color: #0dcaf0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

header img {
  height: 80px;
}

header a {
  color: white;
}

header a:hover {
  color: rgb(255, 208, 0);
}

main {
  gap: 16px;

  width: 100%;
  height: calc(100vh - 100px);
}

main > div {
  width: 50%;
}

.files {
  height: calc(100vh - 100px);
  overflow: auto;
  padding: 20px;
}


.files-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.file-item {
  display: flex;
  gap: 8px;
}

.file-item:hover {
  background-color: #ccc;
}

.file-item a {
  color: #444444;
}

.file-item a:hover {
  color: #000;
}

.file-item .copy:hover {
  cursor: copy;
}

.file-name {
  flex: 1;
}

.send {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.send-item {
  width: 80%;
}


@media (max-width: 920px) {
  main {
    flex-direction: column;
  }

  main > div {
    width: 100%;
  }
}