
/* Cadastro Page Candidato */
.cadastro-page-candidato {
  background: linear-gradient(135deg, rgba(121, 12, 230, 0.05) 0%, rgba(121, 12, 230, 0.02) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.cadastro-left,
.cadastro-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
}

.cadastro-center {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  background: rgba(121, 12, 230, 0.05);
  border-radius: 20px;
  padding: 60px 40px;
  max-width: 600px;
  margin: 0 40px;
}

.logo-cadastro {
  height: 80px;
  width: auto;
}

.cadastro-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.cadastro-title {
  font-family: "Inter-Bold", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  line-height: 1.3;
}

.cadastro-subtitle {
  font-family: "Inter-Regular", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #626262;
  margin: 0;
}

.cadastro-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.form-input {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 14px 16px;
  font-family: "Inter-Regular", sans-serif;
  font-size: 16px;
  color: #3c3a3a;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input::placeholder {
  color: #000000;
  opacity: 0.5;
}

.form-input:focus {
  outline: none;
  border-color: #790ce6;
  box-shadow: 0 0 0 3px rgba(121, 12, 230, 0.1);
}

.password-input-group {
  width: 100%;
}

.password-field {
  position: relative;
  display: flex;
  align-items: center;
}

.password-field .form-input {
  width: 100%;
  padding-right: 40px;
}

.toggle-password {
  position: absolute;
  right: 12px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.toggle-password:hover {
  opacity: 1;
}

.terms-link {
  font-family: "Inter-Regular", sans-serif;
  font-size: 13px;
  color: #626262;
  text-decoration: underline;
  text-align: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.terms-link:hover {
  color: #790ce6;
}

.btn-cadastro {
  background: #790ce6;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 16px 40px;
  font-family: "Inter-Regular", sans-serif;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 10px;
}

.btn-cadastro:hover {
  background: #6a0cc0;
  transform: translateY(-2px);
}

.btn-cadastro:active {
  transform: translateY(0);
}

@media (max-width: 1024px) {
  /* Esconde as áreas laterais com as imagens decorativas em tablets e celulares */
  .cadastro-left,
  .cadastro-right {
    display: none;
  }

.cadastro-center {
    margin: 0 20px;
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  /* Ajustes finos de texto e botões para telas muito pequenas */
  .cadastro-title {
    font-size: 24px;
  }

.cadastro-subtitle {
    font-size: 14px;
  }

.btn-cadastro {
    padding: 14px 20px;
    font-size: 16px;
    width: 100%;
  }
}