* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #FFFFFF;
  display: flex;
  height: 100vh;
  overflow-x: hidden;
}

.sidebar-esquerda {
  width: 50%;
  height: 100vh;
  background: #fffefe;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-sidebar {
  width: 600px;
  height: 600px;
  background-image: url('../imagens/logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.sidebar-direita {
  width: 50%;
  height: 100vh;
  background: #FFFFFF;
  color: #000;
  padding: 20px;
  position: relative;
  overflow-x: hidden;
}

.form-acesso {
  margin-top: 40px;
  color: #000;
}

.form-acesso h2,
.cadastro-barra h2 {
  margin-bottom: 15px;
  font-size: 22px;
}

.form-acesso label,
.cadastro-barra label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-acesso input,
.cadastro-barra input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.form-acesso button,
.cadastro-barra button {
  padding: 10px 20px;
  background-color: #0c0c0c;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.form-acesso button:hover {
  background-color: #0056b3;
}

.link-primeiro-acesso {
  margin-top: 15px;
  font-size: 16px;
  color: #0a7aea;
  cursor: pointer;
  text-decoration: underline;
}

.cadastro-barra {
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  padding: 20px;
  box-shadow: -2px 0 5px #000;
  transition: right 0.5s ease;
  z-index: 10;
}

.cadastro-barra button {
  margin-right: 10px;
  background-color: #0d0e0d;
}


.btn-fechar {
  background-color: #dc3545;
}

.btn-fechar:hover {
  background-color: #c82333;
}