html, body {
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-size: cover;
    background-position: right;
    background-image: url("../images/login/login-background-1.png");
}

.login {
    width: 100%;
    margin-top: 30px;
}

.login-logo {
    top: 0;
    left: 15%;
    color: #fff;
    width: 400px;
    height: 100%;
    position: absolute;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
}

.login-logo .separador {
    width: 70%;
    height: 1px;
    opacity: 0.1;
    margin: 0 auto;
    background: #FFF;
}

.login-logo .separador.btm {
    left: 6%;
    bottom: 90px;
    position: absolute;
}

.login-logo .agronegocio {
    margin-top: 20px;
}

.login-logo h1 {
    font-size: 50px;
    margin: 11px 0 0 0;
}

.login-logo span {
    display: block;
    margin-bottom: 12px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo {
    width: 60%;
    height: auto;
}

.caixa-interna {
    z-index: 1;
    width: 280px;
    height: 400px;
    padding: 25px;
    background: #FFF;
    border-radius: 25px !important;
    box-shadow: rgba(0, 0, 0, 0.2) 2px 8px 8px 0;
}

.caixa-interna img {
    width: 100%;
}

.caixa-interna form {
    display: flex;
    flex-direction: column;
}

.caixa-interna > span {
    font-size: 12px;
}

.caixa-interna button {
    border: 0;
    color: #FFF;
    margin-right: 0;
    font-weight: bold;
    text-shadow: none;
    background: #00c87f;
    border-radius: 25px;
}

.caixa-interna button::after {
    top: 0;
    right: 0;
    width: 26px;
    content: '';
    height: 100%;
    position: absolute;
    border-left: 1px solid #fff;
}

.caixa-interna .ui-corner-right {
    border-radius: 0;
}

.perso-field {
    display: flex;
    padding-left: 0;
    padding-right: 0;
    justify-content: center;
}

.perso-field input {
    width: 100%;
    padding: 10px;
}

.perso-field .ui-selectonemenu-label {
    color: #999;
    padding: 10px;
}

#image-1, #image-2, #image-3 {
    opacity: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    transition: opacity 3s ease-in-out;
    animation: imageTransition 21s infinite;
}

#image-2 {
    animation-delay: 7s;
}

#image-3 {
    animation-delay: 14s;
}

@keyframes imageTransition {
    0%, 33.33%, 100% {
        opacity: 1;
    }
    43.33%, 90% {
        opacity: 0;
    }
}
