/* ===== RESET E CONFIGURAÇÕES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /* 1rem = 10px */
}

body {
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f8fafc;
  color: #333;
}

/* ===== CONTAINER GERAL ===== */
.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.register-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-inline: 150px;
}

.login-container {
  padding: 3rem 2.5rem;
  max-width: 40rem;
  width: 100%;
  text-align: center;
}


.register-container {
  padding: 3rem 2.5rem;
  /* max-width: 40rem; */
  width: 80%;
  text-align: center;
  margin-right: 70px;

}

.logo {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}

.logo .orange {
  color: #ff7a00;
}

.logo .bold {
  color: #333;
}

/* ===== FORMULÁRIO ===== */
.login-form {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group {
  margin-bottom: 1.8rem;
}

label {
  font-family: 'Inter', sans-serif;
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  font-weight: 500;
  font-style: normal;
  color: #191D23;
}

.image-between {
  background-image: url("../assets/img/register-image.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 80vh;
}

input {
  width: 100%;
  height: 48px;
  padding: 1rem;
  font-size: 1.5rem;
  border: 1px solid #D0D5DD;
  border-radius: 0.5rem;
  outline: none;
  color: #323334;
  transition: border-color 0.3s ease;
}

.color_red {
  color: red;
  font-size: 12px;
  margin-top: 2px;
}

select {
  width: 100%;
  height: 48px;
  padding: 1rem;
  font-size: 1.5rem;
  border: 1px solid #D0D5DD;
  border-radius: 0.5rem;
  outline: none;
  color: #323334;
  transition: border-color 0.3s ease;
}

input:focus {
  border-color: #ff7a00;
}

.password-group {
  position: relative;
}

.link {
  color: #ff7a00;
  text-decoration: none;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.link:hover {
  color: #e96b00;
  text-decoration: underline;
}

.form-remember {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  color: #555;
}

/* Esconder o input padrão */
input[type="checkbox"] {
  appearance: none;
  /* Remove o estilo padrão do checkbox */
  -webkit-appearance: none;
  /* Compatibilidade com Safari */
  -moz-appearance: none;
  /* Compatibilidade com Firefox */
  width: 1.4rem;
  height: 1.4rem;
  border: 2px solid #ff7a00;
  /* Borda da caixa */
  border-radius: 4px;
  /* Opcional: deixa os cantos arredondados */
  display: inline-block;
  position: relative;
  cursor: pointer;
}

/* Estilizar o checkmark quando estiver selecionado */
input[type="checkbox"]:checked::before {
  content: "\2713";
  /* Código do checkmark ✔ */
  color: #ffffff;
  /* Cor branca */
  font-size: 1.1rem;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

input[type="checkbox"]:checked {
  background-color: #ff7a00;
  /* Cor de fundo da caixa */
  border-color: #ff7a00;
  /* Cor da borda quando selecionado */
}

.btn-submit {
  display: inline-block;
  width: 100%;
  height: 44px;
  background-color: #ff7a00;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  padding: 1.2rem 0;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background-color: #e96b00;
}

/* ===== RODAPÉ REGISTRO ===== */
.register-section {
  margin-top: 2rem;
  font-size: 1.4rem;
  color: #555;
}

.register-section a {
  font-weight: bold;
}

/* 
#tpv_stage {
  display: none;
}

#mcc_stage {
  display: none;
} */

.dots {
  display: flex;
  justify-content: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 5px;
  cursor: pointer;
  /* Facilita a interação */
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #ff6a00;
}


/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
  .image-between {
    display: none;
  }

  .register-wrapper {
    padding-inline: 0px;
  }

  .register-container {
    margin-right: 0px;
    margin-block: 15px;
  }
  
}

@media (max-width: 768px) {
  html {
    font-size: 56.25%;
    /* 1rem = 9px */
  }

  .login-container {
    /* padding: 2.5rem 2rem; */
  }
}

@media (max-width: 480px) {
  html {
    font-size: 50%;
    /* 1rem = 8px */
  }

  .logo {
    font-size: 3.2rem;
  }
}