body {
    font-family: "Montserrat", sans-serif;
    /* background-color: #c9d0dc; */
    background-color: #3c3c3b;
    /* background-image: radial-gradient(circle, #3c3c3b 0%, #c9d0dc 70%), radial-gradient(circle, #3c3c3b 0%, #c9d0dc 70%); */
    background-image: radial-gradient(circle, #c9d0dc 0%, #000000 70%), radial-gradient(circle, #c9d0dc 0%, #000000 70%);
    background-position: left -10vw top -25vw, right -45vw center;
    background-size: 110vw 110vw;
    background-repeat: no-repeat;
}

@media (max-width: 1199px) {
    body {
        background-position: center top -50vh, right -50vh bottom -80vh;
        background-size: 100vh 100vh;
    }
}

#acesso {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    width: 100vw;
    min-height: 96vh;

    & img{
        margin-bottom: 10px;
    }
}

#acesso>div {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform: translateY(-25%);
}

.box {
    color: #000000;
    box-shadow: 0px 7px 28px rgba(0, 0, 0, .04);
    border-radius: 16px;
    height: fit-content;
    border: 1px solid #e0e0e0;
    background: rgba(255, 255, 255, 0.25);
    padding: 30px;
    width: 350px;
}

.campo {
    position: relative;
    margin-bottom: 15px;
}

.campo label {
    display: block;
    width: 100%;
    margin-bottom: 3px;
    font-size: .8em;
    font-weight: bolder;
}

.campo input {
    width: 100%;
    padding: 8px;
    line-height: 1.5em;
    border: 1px solid #c7c7c7;
    border-radius: 5px;
}

.logo {
    width: 5em;
    margin: 30px;
}

form button {
    width: 100%;
    background-color: #870000;
    color: #fafafa;
    font-weight: 400;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
}

form button:hover {
    background-color: #710101;
}

span.version {
    font-size: .7em;
    display: block;
    width: 100%;
    text-align: right;
    padding: 10px 20px;
    color: #a3a3a3
}