:root {
    --dark-green: #217185;
    --dark-green-active: #217185;
    --light-green-border: #21718550;
    --box-shadow-componentes: 6px 6px 4px #00000025;
}

body {
    background-image: url("/imagens/Login - fundo.svg");
    background-attachment: fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main {
    width: 85%;
    min-width: 300px;
    max-width: 840px;
    position: relative;
    align-content: center;
}

.divMain {
    background-color: #F9F7F7;
    border: 1px solid #217185;
    box-shadow: 0 0 15px 2px #65875F25;
    padding: 30px;
    margin: auto;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.divLogo {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
}

.divFormInput {
    display: flex;
    flex-direction: column;
    max-width: 370px;
    min-width: 250px;
    width: 100%;
    gap: 12px;
}

.divForm {
    width: 90%;
    margin: 1em;
}

.form_action {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.img_logo {
    width: 200px;
    height: 200px;
}

.button {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    border-radius: 8px;
    padding: 12px 30px;
    cursor: pointer;
    border: none;
    box-shadow: var(--box-shadow-componentes);
    background-color: #217185;
    width: 100%;
    font-size: 1rem;
}

.button:hover{
    background-color: #225764;
}

@media screen and (max-width: 720px) {
    .main {
        width: 70%;
    }

    .divMain {
        flex-direction: column;
        padding: 10px;
        height: 80%;
    }
}