html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 20% 80%;
  font-family: sans-serif;
  background-color: white;
}

input {
  background-color: white;
}

textarea {
  background-color: white;
}

#two_elements_menu {
  width: 100%;
  height: 100%;
}

#two_elements_content {
  overflow-y: auto;
  margin-left: 3%;
  margin-right: 5%;
  margin-top: 3%;
  margin-bottom: 3%;
}

#two_elements_content_frame {
  height: max-content;
  margin-right: 2px;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 2%;
  padding-bottom: 2%;
  background-color: lightblue;
  border: 5px solid lightblue;
  border-radius: 20px;
}

::-webkit-scrollbar {
  border: solid 2px blue;
  border-radius: 10px;
  margin-left: 2px;
  padding-left: 10px;
}

::-webkit-scrollbar-button {
  display: none;
}

::-webkit-scrollbar-thumb {
  background-color: lightblue;
  border: solid 2px lightblue;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: blue;
}

::-webkit-scrollbar-corner {
  display: none;
}

::-webkit-resizer {
  display: none;
}

.filler, .big_filler, .small_filler, .menu_entry {
  height: 10%;
  display: grid;
  grid-template-columns: 40% 60%;
}

#left_menu {
  width: 100%;
  height: 100%;
}

#left_menu a {
  text-decoration: none;
}

.menu_entry:hover {
  opacity: 0.75;
  cursor: pointer;
}

#left_menu:hover .full_name {
  visibility: visible;
}

.big_filler {
  height: 90%;
}

.filler {
  height: 30%;
}

.icon {
  background-color: lightblue;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon img {
  width: 40%;
  height: auto;
}

#logo {
  width: 70%;
  padding-bottom: 20%;
}

.full_name {
  background-color: lightblue;
  visibility: hidden;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: white;
  text-align: left;
  font-size: 120%;
}

.full_name img {
  width: 95%;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1%;
  white-space: nowrap;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 15px;
  color: black;
  background-color: grey;
  border-color: grey;
}

.btn:hover {
  color: black;
  background-color: blue;
  border-color: grey;
}

a.btn {
  text-decoration: none;
  color: black;
}

.btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

input {
  margin: 1.3%;
  border-radius: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

textarea {
  margin: 1.3%;
  border-radius: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.text_frame {
  padding-bottom: 3%;
  padding-top: 3%;
}

.text_frame h1 {
  text-align: center;
}

.disclaimer {
  border: 2px solid #2196F3;
  border-radius: 15px;
  background-color: #BDE5F8;
  padding: 1%;
  margin: 1%;
}

.message_field, #default_message_field {
  padding: 5px;
  margin-bottom: 2%;
  border: solid 1px grey;
  border-radius: 15px;
  display: none;
}

#flash_messages {
  position: fixed;
  right: 1%;
  bottom: 1%;
  height: auto;
  width: 20%;
  float: right;
}

.message_field {
  background-color: lightgrey;
}

.message {
  color: black;
  background-color: #BDE5F8;
}

.success {
  color: black;
  background-color: #DFF2BF;
}

.warning {
  color: black;
  background-color: #FEEFB3;
}

.failure {
  color: black;
  background-color: #FFD2D2;
}

form {
  display: grid;
  grid-template-rows: 33% 33% 33%;
}

svg {
  height: 0;
  width: 0;
  margin: 0;
  padding: 0;
}

#two_elements_content_frame {
  margin: 10%;
}

.login_grid_entry {
  display: flex;
  height: 80%;
  padding: 2%;
}

.login_grid_entry input {
  width: 100%;
  margin: 0;
  padding: 0;
}

.login_icon {
  height: 100%;
  width: 15%;
  margin: 0;
  padding: 0;
  background-color: blue;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
}

input {
  border: solid 1px lightblue;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  background-color: grey;
  font-size: 1.3em;
  background-color: white;
}

input:hover {
  outline-width: 2px;
  outline-color: blue;
  border-color: blue;
}

input:focus {
  outline-width: 2px;
  outline-color: blue;
  border-color: blue;
}

input:focus-visible {
  outline-width: 2px;
  outline-color: blue;
  border-color: blue;
}

.login {
  border-radius: 15px;
  background-color: grey;
}

.login:hover {
  border-color: blue;
  background-color: blue;
}

/*# sourceMappingURL=login.css.map */
