section#signin {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: calc(100vh - 72px);
    min-height: calc(100svh - 72px);
    padding: 10px;
}

section#signin div.welcome img {
    width: 100%;
    height: 100%;
}

/* prettier-ignore */
[data-theme='dark'] section#signin div.welcome img {
	filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(3651%) hue-rotate(179deg) brightness(95%) contrast(88%);
}

section#signin div.formulario {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    width: 100%;
}

section#signin div.formulario form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    border: 1px solid rgba(0, 0, 0, 0.87);
    border-radius: 4px;
    padding: 15px;
    width: 100%;
}

[data-theme='dark'] section#signin div.formulario form {
    border-color: rgba(255, 255, 255, 0.87);
}

section#signin div.formulario form span {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.334;
    letter-spacing: 0em;
    color: rgba(0, 0, 0, 0.6);
}

[data-theme='dark'] section#signin div.formulario form span {
    color: rgba(255, 255, 255, 0.6);
}

section#signin div.formulario form input {
    width: 100%;
}

section#signin div.formulario form .form-control .adornment {
    color: rgba(0, 0, 0, 0.6);
}

/* prettier-ignore */
[data-theme='dark'] section#signin div.formulario form .form-control .adornment {
    color: rgba(255, 255, 255, 0.6);
}

/* prettier-ignore */
section#signin div.formulario form .form-control .adornment[data-position="end"] {
	cursor: pointer;
}

section#signin div.formulario form div.icon {
    font-size: 4em;
    background: black;
    border-radius: 100%;
    padding: 10px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

[data-theme='dark'] section#signin div.formulario form div.icon {
    background: #e1e2e5;
}

section#signin div.formulario form div.icon {
    padding: 5px;
    color: white;
}

[data-theme='dark'] section#signin div.formulario form div.icon {
    color: var(--color-app-primary);
}

@media (min-width: 712px) {
    section#signin div.welcome,
    section#signin div.formulario {
        width: 50%;
    }
    section#signin div.welcome img {
        height: 100%;
    }
}

@media (max-width: 711px) {
    section#signin {
        flex-direction: column;
    }

    section#signin div.welcome img {
        height: 270px;
    }
}

@media (max-width: 600px) {
    section#signin div.welcome img {
        height: 230px;
    }
}

@media (max-width: 400px) {
    section#signin div.welcome img {
        height: 210px;
    }
}

@media (max-width: 1200px) {
    section#signin div.welcome img {
        margin-bottom: 10px;
    }
}
