/* General Settings */
:root {
  --color-1: #eaeaea;
  --color-2: #000000;
  --background: #f4f4f4;
  --red-valmes: rgba(202, 0, 0, 0.34);
  --red-valmeshover: rgb(252 0 0 / 76%);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  width: 100vw;
  height: 100vh;
}
/* Login Area */
.main-login {
  width: 100vw;
  height: 100vh;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}
main section img {
  width: 150px;
  display: block;
  margin: 20px auto;
}
section.section-login {
  width: 90%;
  min-height: 420px;
  margin: auto;
  background-color: var(--color-1);
  border: 1px solid var(--red-valmes);
  border-radius: 5px;
  animation: boxshadow 3s ease infinite;
}

@keyframes boxshadow {
  0% {
    box-shadow: -1px 2px 21px 2px var(--red-valmes);
    box-shadow: -1px 2px 21px 4px var(--red-valmes);
    box-shadow: -1px 2px 21px 6px var(--red-valmes);
  }
  50% {
    box-shadow: -1px 2px 21px 1px var(--red-valmes);
    box-shadow: -1px 2px 21px 3px var(--red-valmes);
    box-shadow: -1px 2px 21px 5px var(--red-valmes);
  }
  100% {
    box-shadow: -1px -3px 21px 3px var(--red-valmes);
    box-shadow: -1px -3px 21px 5px var(--red-valmes);
    box-shadow: -1px -3px 21px 7px var(--red-valmes);
  }
}

/* Main table generic */
main.tableContent {
  margin-top: 15px;
  text-align: center;
}
button.primaryButton {
  margin-top: 4px;
  padding: 4px 8px 4px 8px;
  border: 0;
  border-radius: 4px;
  background-color: var(--red-valmes);
}
button.primaryButton:hover {
  color: var(--color-2);
  background-color: var(--red-valmes);
  box-shadow: 0px 0px 5px 1px var(--red-valmes);
}

/* Login main area */
section h1 {
  font-size: 1.8rem;
}
section form {
  width: 80%;
  margin: 15px auto;
  font-size: 1.6rem;
}
form label {
  display: block;
  text-align: left;
}
form label.label-dos {
  margin-top: 10px;
}
form input {
  width: 100%;
  margin: 5px 0 10px 0;
  border: 0;
  border-radius: 10px;
  padding: 5px;
  outline: 0;
  background-color: var(--color-1);
  box-shadow: 0px 0px 4px -2px var(--color-2);
}
form button {
  font-weight: 600;
  width: 100%;
  margin-top: 30px;
  padding: 16px;
  border-radius: 15px;
  border: 0;
  outline: 0;
  color: var(--red-valmes);
  background-color: var(--color-1);
  /*box-shadow: 0px 0px 4px -2px var(--color-2);*/
  cursor: pointer;
}
form button:hover {
  color: var(--color-2);
  background-color: var(--red-valmes);
  box-shadow: 0px 0px 5px 1px var(--red-valmes);
}
form button:focus {
  color: var(--color-2);
  background-color: var(--red-valmes);
  box-shadow: 0px 0px 5px 1px var(--red-valmes);
}

/* Generic Style Button Pushed */
.buttonPush:active{
  box-shadow: inset 0px 0px 7px 1px var(--red-valmes);
}

/* Main table format */
.main-tables-content {
  width: 90%;
  margin: 0 auto;
}
section div.columnsTitle{
  display: flex;
  margin-top: 10px;
  justify-content: space-between;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}
.columnsContent .module{
  display: flex;
  margin-top: 4px;
  justify-content: space-between;
  font-size: 1.4rem;
  text-align: left;
  background-color: white;
  border-radius: 3px;
  box-shadow: 5px 5px 15px -1px rgba(0, 0, 0, 0.2),-5px -5px 5px -1px #fff;
}
section div.columnsGeneral{
  padding-top: 8px;
  text-align: center;
  width: -webkit-fill-available;
  height: 35px;
  overflow: hidden;
  white-space: nowrap;
}
section div.columnsSecondary{
  display: none;
}

/* Footer generic style */
footer {
  position: absolute;
  width: 100vw;
  height: 30px;
  bottom: 0;
  background-color: var(--color-1);
  display: flex;
  justify-content: space-around;
  box-shadow: 0px -5px 24px 2px rgba(0, 0, 0, 0.17);
}
footer div a {
  display: inline-block;
  padding-top: 8px;
  text-decoration: none;
  color: #000000;
}
::-webkit-scrollbar {
  display: none;
}