html,
body {
  height: 99%;
  overflow-y: auto;
}

body {
  background: #272727;
}

input[type="text" i],
input[type="password" i] {
  border: none;
  padding-left: 2%;
}

.desktop-login,
.desktop-login * {
  box-sizing: border-box;
}
.desktop-login {
  background: #272727;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.title {
  color: #ffffff;
  text-align: center;
  font-family: "Inter-Bold", sans-serif;
  font-size: 80px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.frame {
  background: #6a6a6a;
  border-radius: 25px;
  width: 75%;
  height: 70%;
  position: absolute;
  left: 12.5%;
  top: 20%;
  overflow: hidden;
}
#user-input {
  background: #d9d9d9;
  border-radius: 20px;
  width: 90%;
  height: 10%;
  min-height: 25px;
  position: absolute;
  left: 5%;
  top: 15%;
}
#pass-input {
  background: #d9d9d9;
  border-radius: 20px;
  width: 90%;
  height: 10%;
  min-height: 25px;
  position: absolute;
  left: 5%;
  top: 42.5%;
}
#log {
  color: #ffffff;
  background: #878787;
  border-radius: 40px;
  font-family: "Inter-Bold", sans-serif;
  font-size: 24px;
  font-weight: 700;
  border: none;
  width: 30%;
  height: fit-content;
  position: absolute;
  inset: 0;
  left: 35%;
  top: 75%;
}
#login {
  color: #ffffff;
  text-align: center;
  font-family: "Inter-Bold", sans-serif;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal {
  display: block;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}
#modal-content {
  background-color: #272727;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
}
#error {
  color: crimson;
  font-family: sans-serif;
}
