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

a {
  text-decoration: none;
}

:root {
  --primary: #8f1eae;
  --second: #cc7a00;
  --terciary: #bc3fde;

  --text-color: #ffffff;
  --title-color: #000000;
  --text-link: #3233f5;
  --text-warning: #ff3131;

  --font-family: "Inter", sans-serif;

  --box-color: #acb8c0;
  --second-box-color: #a6a6a6;
}

body {
  font: 500 1rem var(--font-family);
  background-color: var(--primary);
}

.cabecalho {
  min-height: 4rem;
  margin-bottom: 2rem;
  padding: 0 2rem;
  justify-content: space-between;

  display: flex;
  align-items: center;

  border-bottom: 2px solid var(--box-color);
}

.logo i {
  color: var(--second);
  font-size: 2rem;
}

.button {
  appearance: none;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;

  font-family: inherit;
  font-size: inherit;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  background-color: var(--second);
  color: var(--text-color);
  border-radius: 8px;
  padding: 0.8rem 1.5rem;
  transition: filter 0.2s;
}

.button:hover {
  filter: brightness(1.1);
}

.button:active {
  transform: scale(0.98);
}
.button:hover {
  background-color: #d38714;
  transform: translateY(-2px);
}

input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--box-color);
  border-radius: 4px;
  margin-top: 0.5rem;
  background-color: var(--box-color);
  font-family: inherit;
  color: var(--second-box-color);
}

section {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: calc(100vh - 6rem);
}
.card-register {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);

  width: 100%;
  max-width: 400px;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  width: 100%;
}

.buttons a {
  text-align: center;
}

.buttons a:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.buttons .button {
  flex: 1;
  white-space: nowrap;
}

.button:hover {
  filter: brightness(1.1);
  background-color: #d38714;
  transform: translateY(-2px);
}

.card-register p {
  display: flex;
}

.input {
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 0.5rem;
  background-color: var(--box-color);
  width: 100%;
  margin: 0.5rem;
}

.input i {
  background-color: var(--box-color-second);
  margin: 1rem;
}

.input input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 1rem;
  font-family: inherit;
  color: var(--title-color);
}

.btn-recruiter {
  background-color: transparent;
  color: var(--second);
  border: 2px solid var(--second);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-recruiter:hover {
  background-color: var(--second);
  color: white;
  transform: scale(1.05);
}
