body,
html,
#root {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: normal;
}

#backgroundImage {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: normal;
  background-image: url("/static/cncbase/images/background.jpg");
  background-repeat: no-repeat;
  background-position: 0px;
  background-size: 4000px;
  filter: blur(8px);
}


#loginFormParent {
  position: absolute;
  background-color: rgba(226, 253, 255, 0.6);
  border-radius: 7px;
  top: 20%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 250px;
  height: 350px;
  padding-left: 20px;
  padding-right: 40px;
}

p#changeLanguage {
  cursor: pointer;
  text-align: right;
  position: fixed;
  top: 5px;
  right: 15px;
}

#loginTitle {
  text-align: center;
  margin: 0px;
  margin-left: 70px;
  margin-right: 55px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: bold;
  font-size: larger;
  margin-top: 20px;
  margin-bottom: 30px;
}

#usernameLabel,
#passwordLabel {
  margin: 0px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: bold;
  font-size: medium;
  display: block;
  margin-bottom: 6px;
  margin-left: 20px;
}

input#userNameInput,
input#passwordInput {
  display: block;
  margin: 0px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: normal;
  margin-bottom: 20px;
  height: 35px;
  border-style: none;
  border-radius: 7px;
  width: 100%;
  padding: 0px;
  padding-left: 20px;
}

input#passwordInput {
  margin-bottom: 10px;
}

label#remember {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: normal;
  font-size: medium;
  margin: 0px;
  margin-bottom: 20px;
}

#submitInput {
  display: block;
  margin: auto;
  height: 35px;
  width: 108%;
  margin-bottom: 40px;
  background-color: rgba(80, 200, 211, 1);
  border-style: none;
  border-radius: 7px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'IBM Plex Mono', monospace;
  font-size: medium;
}

#messagePopup {
  font-size: small;
  margin: auto;
  padding-left: 20px;
  padding-right: 30px;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 40px;
  height: 30px;
  background-color: rgba(255, 127, 95, 0.853);
  line-height: 30px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: bold;
  box-shadow: 0px 1px 29px rgb(0 0 0 / 25%);
}

#closeDown {
  position: absolute;
  right: 0px;
  top: 5px;
  display: block;
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-right: 5px;
}

#cookiePopup {
  font-size: small;
  margin: auto;
  padding-left: 30px;
  padding-right: 10px;
  position: absolute;
  bottom: 20px;
  right: 0px;
  height: 30px;
  background-color: rgba(143, 226, 131, 0.85);
  line-height: 30px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: bold;
  box-shadow: 0px 1px 29px rgb(0 0 0 / 25%);
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
}


#closeDownCookie {
    position: absolute;
    left: 0px;
    top: 5px;
    display: block;
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-left: 5px;
}