body {
  font-family: 'Roboto', sans-serif!important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--background)!important;
  width: 100%;
  padding-top: 10vh;
  margin: 0;
}

main {
  width: 80%;
}

@media (min-width: 700px) {
  main {
    width: 70%;
  }
}

@media (min-width: 900px) {
  main {
    width: 60%;
  }
}

@media (min-width: 1100px) {
  main {
    width: 40%;
  }
}

#title {
  display: flex;
  align-items: center;
  justify-content: center;
}

#title i {
  color: var(--color-title);
  width: 30px;
  height: 30px;
  border: 1px solid var(--color-title);
  border-radius: 50%;
  font-size: 1.1rem;
  text-align: center;
  line-height: 29px;
  margin-right: 10px;
  cursor: pointer;
}

#title h1, 
#title h2,
#title h3,
#title h4,
#title h5, 
#title h6 {
  color: var(--color-title);
  margin: 0;
}

#title h1 {
  font-size: 2rem!important;
  font-weight: bolder!important;
}

#title h2 {
  font-size: 1.5rem!important;
  text-align: center;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus
input:-webkit-autofill, 
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--color)!important;
  -webkit-box-shadow: 0 0 0px 1000px var(--background) inset;
  transition: background-color 5000s ease-in-out 0s;
}

::-webkit-scrollbar {
  width: 10px;
  background: #333;
}

::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 10px;
}

.select-multiple {
  position: relative;
  margin: 10px 0;
}

.multiselect-native-select ul {
  background: var(--background)!important;
  border-radius: 15px!important;
}

a:hover {
  text-decoration: none!important;
}

.alert-save {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-weight: 600;
  color: var(--color-input);
  background: var(--background-submit);
  display: none;
  font-size: 0.7rem!important;
  padding: 20px;
  border-radius: 10px;
}

.error-message {
  color: white;
  padding-top: 10px;
  transition: 0.3s;
  font-size: 12px;
}

.nh-input,
.nh-button {
  width: 100%;
  padding: 15px;
  font-size: 0.9rem;
  background: var(--background);
  border-radius: 12px;
  color: var(--color);
  outline: none!important;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  transition: 0.1s;
}

label:not(.checkbox label) {
  background: var(--background);
  color: var(--color-label);
  font-size: 0.7rem;
  margin-bottom: 0;
  margin-left: 15px;
  position: relative;
  top: 12px;
  padding: 0 8px;
  transition: 0.3s;
}

.checkbox:nth-last-child(1) label {
  margin: 0;
}

.checkbox input {
  margin-right: 10px;
}

.nh-input [type="submit"],
.nh-button {
  background: var(--background-submit)!important;
  color: var(--color-submit);
  font-weight: 600;
  border: none;
  margin: 1.5rem 0;
  align-items: center;
  transition: 0.1s;
}

.nh-input [type="submit"]:hover,
.nh-button:hover {
  background: var(--background-hover-submit)!important;
} 

.nh-input:hover {
  border: 1px solid var(--border-hover);
}

.input-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.input-button .input {
  width: calc(100% - 75px);
}

.input-button button {
  width: 51px;
  margin-top: 26px;
  margin-bottom: 0;
}