/* Estilo da pagina de cadastro */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  height: 100vh;
  box-sizing: border-box;
}

.bg-success {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
}

.bg-warning {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
}

.bg-light {
  background-color: #f1f1f1;
  border-radius: 10px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 1200px;
  height: 400px;
  z-index: 1;

}

/* Define a largura do formulário */
.div-central form {
  width: 100%;
}

/* Define o estilo dos inputs */
.div-central input {
  border: none;
  border-radius: 5px;
  padding: 10px;
}

/* Define o logo */
.cadastro-logo {
    position: fixed;
    margin: -150px;
    margin-left: 40px;
}

/* Define o estilo para telas maiores que 700px */
@media (min-height: 700px;) {
    .img-holder {
        position: fixed;
    }
    .cadastro-logo {
    position: fixed;
    margin: -150px;
    margin-left: 40px;
    }
}



