/* Reset básico */
body, html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url('../../images/fundo2.jpg'); /* Caminho da imagem de fundo */
  background-repeat: no-repeat;
  
}

/* Container principal dividindo a tela */
.tela-container {
  display: flex;
  flex-direction: row;
  height: 100vh;
  width: 100vw;   
  overflow: hidden;

}

/* Lado esquerdo com imagem de fundo */
.lado-esquerdo {
  width: 70%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 20px;

}

/* Logotipo centralizado */
.logo-central {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15%;

}

.logo {
  max-width: 300px;
  width: 100%;
  height: auto;
}

/* Lado direito com formulário */
.lado-direito {
  width: 30%;
  background-color: #fff;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container-fluid .btn-primary {

  background-color: #747474;
  color: white;
  border: none;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-outline-secondary {
  background-color: #b8b8b8;
  color: white;
}

.container-fluid button:hover {
  background-color: #363636;
}

.wrapper {
  background-color: #ffffff!important;;
}
.content {
  background-color: #ffffff!important;;
}

.px-3 {


} 

.py-2 {

}