* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #A37FF8, #E0C3FC);
  height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CAIXA BRANCA PRINCIPAL (LARGA) */
.container {
  background: white;
  width: 1100px;          /* <<< AQUI A CAIXA FICA LARGA */
  max-width: 95%;
  height: 650px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);

  display: flex;          /* <<< divide imagem + form */
  overflow: hidden;
}

/* LADO ESQUERDO — IMAGEM */
.image-area {
  width: 50%;
  background: #f3ecff; /* placeholder até colocar imagem */
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* LADO DIREITO — CADASTRO */
#cadastro {
  width: 50%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#cadastro h1 {
  color: #6C4BFA;
  margin-bottom: 25px;
}

/* INPUTS */
#cadastro input {
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

#cadastro input:focus {
  outline: none; /* remove azul padrão do navegador */
  border-color: #A37FF8;
  box-shadow: 0 0 0 1px rgba(163, 127, 248, 0.35);
}

/* BOTÕES */
#btn-cadastrar {
  background-color: #6C4BFA;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s;
}

#cadastro button:hover {
  background-color: #5840c2;
}

/* BOTÃO GOOGLE */
#cadastro .google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background-color: #ffffff;
  color: #000000;

  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;

  font-size: 14px;
  font-weight: 500;

  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s;
}

/* HOVER */
#cadastro .google-btn:hover {
  background-color: #e4e4e7;
  border-color: #d1d5db;
}

/* ÍCONE GOOGLE */
#cadastro .google-btn .google-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* DIVISOR */
.divider {
  margin: 20px 0;
  text-align: center;
}

.divider span {
  color: #999;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
    height: auto;
  }

  .image-area,
  #cadastro {
    width: 100%;
  }

  .image-area {
    display: none;
  }

}


/* Modal (fundo escuro) */
.modal {
     position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* fundo semi-transparente */
  display: none; /* inicialmente escondida */
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Janela branca interna */
.modal-lock {
  background: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  max-width: 450px;
  width: 100%;
 margin-left: 520px;
 margin-top: 70px;
 height: 500px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Parágrafo */
.modal-lock p {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  margin: 0;
}


#btn-reenviar-email {
  margin-top: 5px;
  padding: 10px 25px;
  background: #a128e3;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
}

/* Mensagem de reenviado */
#msg-reenvio {
  font-size: 14px;
  color: #333;
  margin-top: 10px;
}

