/* Header */
.large-header {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity 3s ease-in-out;
    z-index: -1;
}

    .bg-slide.active {
        opacity: 1;
    }
.no-brand {
    background-image: url("/img/bg4.webp") !important;
    background-size: cover !important;

}
#large-header {
    background-image: url("/img/bg0.webp");
    background-size: cover;
    animation-delay: 0s;
}

.main-title {
  position: absolute;
  margin: 0;
  padding: 0;
  color: #f9f1e9;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}
.demo-1 .main-title {
  text-transform: uppercase;
  font-size: 4.2em;
  letter-spacing: 0.1em;
}
.main-title .thin {
  font-weight: 200;
}
@media only screen and (max-width: 768px) {
  .demo-1 .main-title {
    font-size: 3em;
  }
}
.button-submit-login {
    background-color: #FFFFFF;
    border: 0;
    border-radius: .5rem;
    box-sizing: border-box;
    color: #111827;
    font-family: "Inter var",ui-sans-serif,system-ui,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25rem;
    padding: 15px 1rem;
    text-align: center;
    text-decoration: none #D1D5DB solid;
    text-decoration-thickness: auto;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: 100%;
}

.button-submit-login:hover {
    background-color: rgb(249,250,251);
}

.button-submit-login:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.button-submit-login:focus-visible {
    box-shadow: none;
}
    .button-submit-login:disabled {
        background: rgba(209, 213, 219, 0.5); /* Cor de fundo com transpar�ncia para o estado disabled */
        cursor: not-allowed; /* Indica que o bot�o est� desativado */
    }
