@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  /* cores gerais */
  --error: #ff5252;
  --success: #4caf50;
  --warning: #ffc107;
  --info: #2196f3;

  /* font */
  --thin: 100;
  --light: 300;
  --regular: 400;
  --medium: 500;
  --bold: 600;
  --black: 700;
}

* {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  margin: 0;
}

h1 {
  font-size: 3rem;
  font-weight: var(--black);
}
h2 {
  font-size: 3.5rem;
  font-weight: var(--regular);
}
h3 {
  font-size: 3rem;
  font-weight: var(--regular);
}
h4 {
  font-size: 2rem;
  font-weight: var(--regular);
}
h5 {
  font-size: 1.5rem;
  font-weight: var(--regular);
}
h6 {
  font-size: 1.25rem;
  font-weight: var(--regular);
}
.subtitle {
  font-size: 1rem;
}
button {
  cursor: pointer;
  background-color: #4caf50;
  width: fit-content;
  padding: 18px 32px 18px 32px;
  border-radius: 40px;
  border: 0 solid;
  color: #fff;
  font-weight: var(--bold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  box-shadow: #00000010 4px 4px;
  z-index: 9999;
  font-size: 16px;
}

a {
  color: var(--info);
}

p {
  font-weight: var(--regular);
  text-align: justify;
  font-size: 1rem;
}

.p2 {
  font-weight: var(--regular);
  font-size: 0.8rem;
}
input,
textarea {
  border: 1px solid #8080803d;
  background-color: #fdfdfdbb;
  padding: 0.5rem;
  border-radius: 5px;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

table {
  width: 100%;
}
tr {
  width: 100%;
  display: flex;
}
th {
  width: 50%;
  padding: 0.2rem 0;
  display: flex;
  align-items: flex-start;
  font-weight: var(--medium);
}
