@charset "UTF-8";
@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background: #f2f2f2;
}

*::-webkit-scrollbar-thumb {
  background-color: #bddc04;
  border-radius: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #667177;
  animation: fadeIn 0.7s ease-out forwards;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.form-frame {
  width: 80%;
  margin: 10vh 0;
  padding: 50px;
  min-height: 80vh;
  background-color: #f2f2f2;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
  transition: all 0.1s;
}

.row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  align-items: center;
}
.header #logo {
  width: 20%;
}
.header .title {
  color: #667177;
  font-weight: 500;
  text-align: center;
}

#mensagemId {
  transition: opacity 0.6s ease-out;
  opacity: 0;
  margin-top: 8px;
}

.botao {
  width: 30%;
  margin-top: 15px;
  outline: none;
  border: none;
  background-color: #bddc04;
  text-decoration: none;
  transition: all 0.3s;
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  border-radius: 5px;
}

.botao:hover {
  background-color: rgb(145.96875, 169.9107142857, 3.0892857143);
  transition: all 0.3s;
}

.botao:focus {
  outline: none;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgb(145.96875, 169.9107142857, 3.0892857143) 0px 0px 0px 2px;
  background-color: rgb(145.96875, 169.9107142857, 3.0892857143);
}

.botao:active {
  background-color: rgb(145.96875, 169.9107142857, 3.0892857143);
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, #bddc04 0px 0px 0px 2px;
}

.alert {
  padding: 10px;
  margin: 1% 0 10px 0;
  border-radius: 5px;
  text-align: center;
}

.alert-success {
  color: #4CAF50;
  /* Verde */
}

.alert-error {
  color: #f44336;
  /* Vermelho */
}

label {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
}

form {
  display: flex;
  flex-direction: column;
}

#formulario label:after,
#form-aprovar label:after,
#form-editar label:after,
#form-chamado label:after {
  content: " *";
  color: #f44336;
}
#formulario .check-item label:after,
#form-aprovar .check-item label:after,
#form-editar .check-item label:after,
#form-chamado .check-item label:after {
  content: none;
}
#formulario .categorizacao,
#form-aprovar .categorizacao,
#form-editar .categorizacao,
#form-chamado .categorizacao {
  display: flex;
  flex-direction: column;
  border: none;
  padding: 0;
  margin-bottom: 20px;
}
#formulario .categorizacao legend:after,
#form-aprovar .categorizacao legend:after,
#form-editar .categorizacao legend:after,
#form-chamado .categorizacao legend:after {
  content: " *";
  color: #f44336;
}
#formulario .categorizacao label,
#form-aprovar .categorizacao label,
#form-editar .categorizacao label,
#form-chamado .categorizacao label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
  font-weight: normal;
}
#formulario .categorizacao label:after,
#form-aprovar .categorizacao label:after,
#form-editar .categorizacao label:after,
#form-chamado .categorizacao label:after {
  content: none;
}
#formulario label[for=observacoes]:after,
#form-aprovar label[for=observacoes]:after,
#form-editar label[for=observacoes]:after,
#form-chamado label[for=observacoes]:after {
  content: none;
}

.grid-container {
  display: grid;
  gap: 20px 30px;
  align-items: center;
  margin-bottom: 2.5%;
}
.grid-container .grid-item {
  display: flex;
  flex-direction: column;
  position: relative;
}
.grid-container .grid-item span {
  font-size: 10px;
  color: #888;
}

.check-list {
  display: flex;
  align-items: center;
  min-height: 40px;
  margin-bottom: 2.5%;
  gap: 10px;
}
.check-list .check-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.check-list input {
  margin-right: 0.75%;
}
.check-list label {
  margin-right: 2.5%;
  display: inline-block;
  min-width: -moz-max-content;
  min-width: max-content;
}

.fileira {
  grid-template-columns: repeat(3, 1fr);
}

.fileira2 {
  grid-template-columns: repeat(2, 1fr);
}

.line {
  width: 90%;
  height: 1px;
  border-bottom: 1px solid #cdcdcd;
  margin: 40px 5%;
}

.infobox {
  border-radius: 4px;
  border: 2px solid #ced4da;
  margin: 10px 2.5px 1.5% 2.5px;
  height: 40px;
  padding: 0 10px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.infobox:focus {
  outline: none;
  border-color: #bddc04;
  box-shadow: 0 0 2.5px 2.5px #bddc04;
}

input.infobox:-moz-read-only, textarea.infobox:-moz-read-only {
  color: #667177;
}

input.infobox:read-only,
textarea.infobox:read-only {
  color: #667177;
}

select.infobox:disabled {
  color: #667177;
}

textarea.infobox {
  height: 120px;
  padding: 10px;
  resize: vertical;
}

.aprovacao {
  display: flex;
  justify-content: space-evenly;
  margin-top: 2%;
}
.aprovacao #aprovar {
  background-color: #4CAF50;
}
.aprovacao #aprovar:hover {
  background-color: rgb(60.5577689243, 139.4422310757, 63.7450199203);
}
.aprovacao #aprovar:active, .aprovacao #aprovar:focus {
  background-color: rgb(60.5577689243, 139.4422310757, 63.7450199203);
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, #4CAF50 0px 0px 0px 2px;
}
.aprovacao #rejeitar {
  background-color: #f44336;
}
.aprovacao #rejeitar:hover {
  background-color: rgb(234.1839622642, 27.9622641509, 12.8160377358);
}
.aprovacao #rejeitar:active, .aprovacao #rejeitar:focus {
  background-color: rgb(234.1839622642, 27.9622641509, 12.8160377358);
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, #f44336 0px 0px 0px 2px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 575.98px) {
  .form-frame {
    width: 90%;
    height: 80%;
    margin: 10% 5%;
  }
  .header {
    display: flex;
    flex-direction: column;
  }
  .header .title {
    font-size: 1.4rem;
    text-align: center;
  }
  .header #logo {
    width: 140px;
  }
  #formulario .check-list,
  #form-aprovar .check-list {
    flex-direction: column;
    align-items: flex-start;
    margin: 20px 0;
  }
  #formulario .fileira,
  #formulario .fileira2,
  #form-aprovar .fileira,
  #form-aprovar .fileira2 {
    grid-template-columns: 1fr;
  }
  #formulario input[type=checkbox],
  #form-aprovar input[type=checkbox] {
    width: 10px;
  }
  #formulario .row,
  #form-aprovar .row {
    gap: 4px;
    align-items: flex-start;
    margin-top: 10px;
  }
  #formulario .row input[type=checkbox],
  #form-aprovar .row input[type=checkbox] {
    width: 16px;
    flex-shrink: 0;
    margin-top: 4px;
  }
  #formulario .row label,
  #form-aprovar .row label {
    line-height: 1.4;
  }
  #formulario .botao,
  #form-aprovar .botao {
    width: 100%;
  }
  #formulario .aprovacao,
  #form-aprovar .aprovacao {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .line {
    margin: 20px 5%;
  }
}
/* Pequeno: celulares maiores */
@media (min-width: 576px) and (max-width: 780.98px) {
  .form-frame {
    width: 90%;
    height: 80%;
    margin: 10% 5%;
  }
  #formulario .check-list,
  #form-aprovar .check-list {
    flex-direction: column;
    align-items: flex-start;
    margin: 20px 0;
  }
  .header .title {
    font-size: 1.2rem;
  }
  .header #logo {
    width: 180px;
  }
  #formulario .fileira,
  #form-aprovar .fileira {
    grid-template-columns: 1fr;
  }
  #formulario .botao,
  #form-aprovar .botao {
    margin-top: 5%;
    align-self: center;
    width: 50%;
  }
  #formulario .aprovacao,
  #form-aprovar .aprovacao {
    gap: 10%;
  }
  #formulario .aprovacao .botao,
  #form-aprovar .aprovacao .botao {
    width: 40%;
  }
}
/* Médio: tablets */
@media (min-width: 781px) and (max-width: 1023.98px) {
  .form-frame {
    width: 90%;
    height: 80%;
    margin: 10% 5%;
  }
  .title {
    font-size: 1.4rem;
  }
  #formulario .botao {
    align-self: center;
    width: 50%;
  }
  #formulario .fileira,
  #form-aprovar .fileira,
  #form-editar .fileira,
  #form-chamado .fileira {
    grid-template-columns: 1fr;
  }
  #formulario .check-list,
  #form-aprovar .check-list,
  #form-editar .check-list,
  #form-chamado .check-list {
    flex-direction: column;
    align-items: flex-start;
    margin: 20px 0;
  }
}
/* Grande: desktops pequenos/laptops */
@media (min-width: 1024px) and (max-width: 1199.98px) {
  .form-frame {
    width: 90%;
    height: 80%;
    margin: 10% 5%;
  }
}/*# sourceMappingURL=styles.css.map */