
:root {
  /*
  font-family: Rubik, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;

  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #242424;
*/

  background-color: #eee;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;

  --primary: #e81926;
  --secondary: #1E335F;    
}


body {
  margin: 0;
  display: flex;
  flex-direction: column;
  place-items: center;
  min-width: 320px;
  min-height: 100vh;
}

#app {
  display: flex;
  flex-direction: row;
  height: 100vh;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 0;
  /*text-align: center; */
}

@media only screen and (min-width:640px) {
  #app {
    padding: 2rem;
  }
}

.card {
  position: relative;
}

.sistate {
  font-weight: 400;
  padding: 8px;
  margin-bottom: 8px;
  margin-top: 8px;  
}

.sistate.invalid {
  border-top: 2px solid orange;
  border-bottom: 2px solid orange;
  color: orange;
}
.sistate.error {
  border-top: 2px solid red;
  border-bottom: 2px solid red;
  color: red;
}