
:root {
  --white: #f9f9f9;
  --light-gray: #efefef;
  --gray: #727272;
  --blue: #1F4180;
  --black: #1B2230;
  --red: #da1522;

  --padding-space: 10vw;
}


p,
label {
  font-size: 1rem;
  font-weight: 400;
  color: var(--black);
}

small,
a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray);
}

a,
button {
  cursor: pointer;
}


.form-group .error-message {
  color: var(--red);
}

span {
  width: 100%;
  display: flex;
  gap: 0.5rem;
}

.container-row {
  min-width: 100%;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
}

.container-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}


form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 0px;
  background-color: var(--light-gray);
  resize: none;

  font-size: 0.9rem;
  font-weight: 400;
  color: var(--black);

  text-overflow: ellipsis;
}

textarea {
  resize: none;
  height: 6rem;
}

select {
  appearance: none;
  background-image: url("../assets/images/caret-down.svg"); /* Ícone personalizado */
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.25rem;
}

button,
.button,
#download,
.main-button {
  width: calc(50% - 0.5rem);
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 0px;
  background-color: var(--blue);
  margin-top: 1rem;

  font-size: 0.9rem;
  font-weight: 400;
  color: var(--white);
}

.main-button {
  width: 100%;
  text-align: center;
  transition: 0.5s;
}

#main-button-container {
  align-items: flex-start;
}

.main-button-content {
  width: 100%;
  align-items: center;
  gap: 0.5rem;
}

.main-button:hover {
  transform: scale(1.05);
  transition: 0.5s;
}

.main-button-inactive {
  transform: none !important;
}

.main-button-inactive {
  width: 100%;
  color: var(--gray);
  background-color: var(--light-gray);
  text-align: center;
  cursor: not-allowed;
}

.button-secondary {
  width: 15%;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--black);
  background-color: var(--light-gray);
  cursor: pointer;
}


.logo {
  height: 3rem;
}

header .logo {
  height: auto;
  width: 10rem;
}

.icon {
  max-height: 1.5rem;
  max-width: 2rem;
}

a * {
  cursor: pointer;
}

.error {
  border: 1px solid var(--red);
}

#download {
  width: 50%;
  margin-top: -10%;
  background-color: var(--blue);
  color: var(--white);
}

#atention-message {
  margin-top: 1rem;
}

.return-content p{
 color: var(--black);
}

@media (min-width: 768px) and (max-width: 1036px) {

  .button-secondary {
    width: 25%;
  }

  #main-button-container {
    width: 100%;
    flex-direction: column;
  }
}


@media (max-width: 767px) {

  strong {
    text-align: center;
  }

  form .container-row,
  #main-button-container {
    width: 100%;
    flex-direction: column;
  }

  button {
    width: 100%;
  }

  .button-secondary {
    width: 50%;
  }

}