* {
  box-sizing: border-box;
  outline: none;
}

html,
body {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-family: sans-serif;
  background: transparent;
}

p,
h1 {
  margin: 0.8rem 0;
}

body {
  background: transparent;
}

.wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.wrap-center {
  align-items: center;
  justify-content: center;
}

#btnLogout {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: steelblue;
  color: white;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: 0.2s;
}

#btnLogout:hover {
  background: orangered;
}

.userData {
  text-align: right;
  display: block;
  background: rgba(128, 128, 128, 0.219);
  padding: 0.5rem;
}

.btn {
  font-family: inherit;
  font-size: inherit;
  border: none;
  border-radius: 0.15rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: 0.2s;
}

.btn:hover {
  background: orangered;
}

.btn:disabled {
  background: rgb(192, 192, 192);
  color: rgb(56, 56, 56);
  cursor: not-allowed;
}

.primary {
  background: steelblue;
  color: white;
}

.center {
  text-align: center;
}

.small {
  font-size: small;
}

.red {
  color: red;
}

.grey {
  color: grey;
}

.padding {
  padding: 1rem;
}

#modal {
  display: none;
}

.modal-frame {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-box {
  display: table;
  background: white;
  margin: 1rem;
  width: 100%;
  max-width: 400px;
  padding: 0 1rem;
  border-radius: 0.25rem;
}

#modalClose {
  float: right;
  margin-top: 0.25rem;
  margin-right: -0.5rem;
  font-size: 1.5rem;
  cursor: pointer;
}
