* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

:root {
    --cor-principal: #217185;
    --cor-principal-hover: #3293ac;
    --cor-principal-50: #217185F0;
}

body {
    min-height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F9F9F9;
}

main {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    padding: 16px;
}

section {
    display: flex;
    border-radius: 15px;
    border: 1px solid #000;
    background: linear-gradient(180deg, var(--cor-principal) 0%, #FFF 100%);
    filter: drop-shadow(0px 8px 0px rgba(0, 0, 0, 0.08));
    padding: 32px 16px !important;
    max-width: 1024px;
    flex-grow: 1;
}

.article-login {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    gap: 64px;
}

.form-action {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    text-align: center;
    max-width: 390px;
    flex-grow: 1;
}

.form-action a {
    border-radius: 10px;
    background: var(--cor-principal);
    padding: 8px;
}

.form-action a:hover {
    background: var(--cor-principal-hover);
}

.form-action a input[type="button"] {
    background: none;
    border: 0;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.form-action > h1 {
    color: white;
}

.div-input-campos {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-self: stretch;
    margin: 32px 0 24px 0;
}

.div-login-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 242px;
    border-radius: 100%;
    border: 3px solid #FFF;
    background: #ECECEC;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.10);
    padding: 16px;
}

.div-input {
    display: flex;
    align-items: center;
    border-radius: 5px;
    border: 1px solid #000;
    background: #FFF;
    overflow: hidden;
    gap: 16px;
    padding: 4px 8px;
    position: relative;
    min-height: 32px;
}

.div-input img {
    width: 24px;
    z-index: 1;
}

.div-input > input {
    border: 0;
    outline: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding-left: 40px !important;
    min-height: 32px;
}

.div-input > input[type="text"], .div-input > input[type="password"] {
    border: 0;
    flex-grow: 1;
    padding: 4px;
    outline: none;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

input[type="text"]::placeholder, input[type="password"]::placeholder {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.img-login {
    width: 100%;
}

img {
    width: auto;
    height: auto;
}

@media screen and (max-width: 756px) {
    .article-login {
        flex-direction: column;
    }

    section {
        flex-grow: 0;
    }
}
