body {
  margin: 0;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: #CD3C4C;
}

.input-group {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
}
.input-group label {
  padding-bottom: 0.3rem;
}
.input-group .input-control {
  -webkit-appearance: none;
  appearance: none;
  padding: 0.6rem 1rem;
  border-radius: 0.8rem;
  border: 1px solid #D8D8D8;
  font-size: 1rem;
  line-height: 1.5;
  background-color: #fff;
}
.input-group .input-control:focus {
  outline-style: none;
  border-color: #EE6C47;
}

.split-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "left right";
  column-gap: 1.5rem;
}
.split-form:first-child {
  grid-area: left;
}
.split-form:last-child {
  grid-area: right;
}
@media screen and (max-width: 900px) {
  .split-form {
    display: block;
  }
}

.sicoval-button {
  display: inline-block;
  appearance: none;
  padding: 0.6rem 1rem;
  border-radius: 0.8rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.5;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  box-sizing: border-box;
  transition: all 500ms ease;
}
.sicoval-button.btn-primary {
  background-color: #EE6C47;
  color: #fff;
}
.sicoval-button.btn-primary:hover {
  background-color: #ea4718;
}
.sicoval-button.btn-secondary {
  background-color: #CD3C4C;
  color: #fff;
}
.sicoval-button.btn-secondary:hover {
  background-color: #aa2c3a;
}
.sicoval-button.btn-light {
  background-color: #D8D8D8;
  color: #000;
}
.sicoval-button.btn-light:hover {
  background-color: #bfbfbf;
}

.group-submit-buttons {
  text-align: right;
}

#sidebar {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1rem;
}
#sidebar .subheader-menu {
  font-weight: 600;
  margin: 0;
  padding: 1rem 1rem 0;
  align-self: start;
}
#sidebar .subheader-menu span {
  color: #EE6C47;
}

.custom-list {
  list-style: none;
  padding: 0;
  width: 100%;
}
.custom-list li {
  padding: 0.7rem 1rem;
  color: #000;
}

.menu-list li {
  transition: 0.5s ease;
}
.menu-list li:hover {
  background-color: #bfbfbf;
  color: #fff;
}
.menu-list li.active {
  background-color: #CD3C4C;
  color: #fff;
}

table {
  background-color: #fff;
  border: 1px solid #D8D8D8;
  margin: 1.5rem 0;
  padding: 0.5rem;
  border-radius: 0.8rem;
}
table thead {
  border-bottom: 1px solid #D8D8D8;
}
table thead th {
  text-align: start;
}
table th, table td {
  padding: 0.5rem 0.8rem;
}
table .actions {
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-container {
  display: grid;
  grid-template-columns: 40% 60%;
  grid-template-rows: 100vh;
  grid-template-areas: "content fill";
  transition: all 1s ease;
}
.auth-container .form-content {
  grid-area: content;
  justify-self: center;
  align-self: center;
  width: 60%;
}
@media screen and (max-width: 576px) {
  .auth-container .form-content {
    width: 80%;
  }
}
.auth-container .fill-content {
  grid-area: fill;
  background-color: #F1F1F1;
}
@media screen and (max-width: 1200px) and (min-width: 900px) {
  .auth-container {
    grid-template-columns: 60% 40%;
  }
}
@media screen and (max-width: 900px) {
  .auth-container {
    grid-template-columns: 100%;
  }
}

.general-container {
  display: grid;
  grid-template-columns: 250px auto;
  grid-template-rows: 100vh;
  grid-template-areas: "sidebar content";
  background-color: #F1F1F1;
}
.general-container .sidebar {
  grid-area: sidebar;
  width: 100%;
  background-color: #fff;
  border-bottom-right-radius: 1rem;
  border-top-right-radius: 1rem;
}
.general-container .content {
  grid-area: content;
  padding: 1rem 2rem;
}

.title {
  color: #EE6C47;
}

.danger-message {
  padding: 1rem;
  background-color: #CD3C4C;
  color: #fff;
  border-radius: 0.8rem;
}

.auth-header {
  display: flex;
  align-items: center;
  flex-direction: column;
}

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