:root {
  --orange-strong: #E47100;
  --orange-medium: #ff8500;
  --orange-light: #FFE2CC;
  --input-border: #c5c5c5;
  --grey: #424242;
  --light-grey: #9b9a9a;
  --tw-shadow-color: #0000001A;
  --tw-shadow:
    0 1px 3px 0 var(--tw-shadow-color),
    0 1px 2px -1px var(--tw-shadow-color);
  --form-background-color: #FFFFFF;
  --modal-window-background:rgba(0, 0, 0, 0.45);
  --active-tab: #f0f0f0;
}

.hidden {
    display: none !important;
}


* {
  box-sizing: border-box;
  border: 0 solid;
  margin: 0;
  padding: 0;
}

main {
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
    margin-top: 30px;
}

.pagina {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.conteudo {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}


.font-primary {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.font-secondary {
  font-family: "Montserrat", sans-serif;
}

.app {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #fafafa;
  height: 45rem;
}


.form-container, .head-container {
  padding: 10px;
}

.input-container {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
  width: 100%;
}


.filter-container{
  display:flex;
  gap:40px;
  margin-bottom:15px;
}

.input-container label, input {
  width: 100%;
}

.form-title {
  font-size: 20px;
  margin: 0;
  padding: 0;
}


.form-label, .filter-label {
  font-size: 15px;
  font-weight: 400;
}

.form-input, .filter-input {
  margin-top: 10px;
  border: 1px solid var(--input-border);
  border-radius: 5px;
  padding: 10px;
}

.filter-label{
  width: 220px;
  font-weight: 700;
}

.button {
  padding: 8px;
  border-radius: 8px;
  font-size: 14px;
}

.filter-input{
  flex: 1;
  margin-left: 20px;
}

.form-input::placeholder, .filter-input::placeholder {
  color: var(--input-border);
}

.redirect-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.redirect-text {
  font-size: 12px;
}

.redirect-secondary {
  color: var(--orange-medium);
  margin-left: 5px;
}

.title {
  font-size: 20px;
  font-weight: 700;
}

p {
  margin-top: 10px;
  margin-bottom: 10px;
}


.header {
  width: 100%;
  background-color: var(--orange-medium);
  display: flex;
  justify-content: space-between;
  height: 14vh;
  padding: 30px;
}

.header-logo {
  width: 15%;
  display: flex;
  align-items: center;
}

.logo {
  width: 200px;
}

.header-nav {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: end;
}

.header-nav a {
  margin-right: 20px;
  text-decoration: none;
  color: white;
}

.button-logout {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: transparent;
}

.button-logout span {
  margin-left: 5px;
}

.table {
  margin-top: 20px;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--tw-shadow);
  margin-bottom: 20px;
}

thead {
  background-color: var(--grey);
}

th, td {
  padding: 20px;
  text-align: center;
}

th {
  color: white;
}
