@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: "Outfit", "Open Sans", sans-serif;
    /* background-color: #1e3a76; */
    background-color: #3a609c;
    /* background-image: radial-gradient(circle, #3a609c 0%, #1e3a76 70%), radial-gradient(circle, #3a609c 0%, #1e3a76 70%); */
    background-image: radial-gradient(circle, #1e3a76 0%, #3a609c 70%), radial-gradient(circle, #1e3a76 0%, #3a609c 70%);
    background-position: left -10vw top -15vw, right -55vw 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: #3a609c;
    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;
}

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

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

.box .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: #1e3a76;
    color: #fafafa;
    font-weight: 400;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
}

form button:hover {
    background-color: #3a609c;
}

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