html {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: "Manrope", sans-serif;
}

body {
  background-color: #ffffff;
  color: #303030;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

a {
  color: #000000;
}

hr {
  color: #626262;
}

.turbo-progress-bar {
  background-color: #005b3f;
  padding: 1px;
}

.main-layout {
  display: grid;
  grid-template-rows: 7em 1fr;
  grid-template-columns: 1fr 65% 1fr;
  grid-template-areas:
    "lsidebar navbar-layout rsidebar"
    "lsidebar content rsidebar";
}

.lsidebar {
  grid-area: lsidebar;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rsidebar {
  grid-area: rsidebar;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  grid-area: content;
  overflow-y: scroll;
  overflow-x: hidden;
}

.content-panel {
  width: 95%;
  margin: auto;
}

.text-panel {
  width: 100%;
  margin: auto;
}

.center-element {
  float: left;
  width: 100%;
  text-align: center;
  padding: 2em 0;
}

.center-elements {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3em;
}

.login-container {
  padding: 1em;
  text-align: center;
}

.is-button {
  background-color: #00a573;
  color: #ffffff;
  text-decoration: none;
  font-size: 1em;
  padding: 1em;
  margin: 1em;
  border: none;
  border-radius: 1em;
}

.is-input {
  background-color: #f1f1f1;
  color: #2d2d2d;
  font-size: 1em;
  padding: 1em;
  margin: 1em 0;
  border: 2px solid #00a573;
  border-radius: 1em;
  width: 100%;
  display: block;
  box-sizing: border-box;
}

.is-input:invalid + .is-button {
  background-color: #2d2d2d;
  pointer-events: none;
}

.is-input:valid + .is-button {
  background-color: white;
  pointer-events: auto;
}

.is-button:hover {
  background-color: #005b3f;
}

.is-button:focus {
  outline: 3px solid #00a573;
  outline-offset: 2px;
}

.transparent-button {
  background-color: transparent;
  border: none;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  padding: 0px;
  display: flex;
  align-items: center;
}

.transparent-input {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  border: none;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 900px) {
  .main-layout {
    grid-template-rows: 4.5em 1fr;
    grid-template-columns: 1fr;
    grid-template-areas:
      "navbar-layout"
      "content";
  }

  .lsidebar {
    display: none;
  }

  .rsidebar {
    display: none;
  }

  .content-panel {
    width: 100%;
  }

  .text-panel {
    width: 95%;
    margin: auto;
  }
}
