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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a:link {
    text-decoration: none;
}

a:link:hover {
    text-decoration: underline;
}

body {
    display: flex;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    height: 100vh;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.areaLogin {
    display: flex;
    width: 50%;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.logoEmpresa {
    margin-top: 4rem;
    margin-bottom: 2rem;
    max-width: 400px;
}

.logo {
    max-height: 200px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo > img {
    object-fit: contain;
    width: 100%;
}

.fomularioAcesso {
    width: 100%;
    padding: 0 25%;
}


.fomularioAcesso .section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input {
    margin-bottom: 16px;
    width: 100%;
    height: 42px;
    padding-left: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    border-radius: 4px;
    outline: none;
    background: transparent;
    background-color: #fff;
    border-radius: 0.25rem;
    border: 1px solid #ced4da;
    border-color: #b6bfbf #d8dee1 #e5eaec #d8dee1;
    box-shadow: inset 0 2px rgb(7 34 47 / 2%);
    color: #495057;
}

input:focus {
    border-color: #0b9444;
}

.loginOptions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.login-error-message {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: 2px solid red;
    padding: 10px;
    border-radius: 8px;
    max-width: 400px;
    margin: 20px auto;
}

.login-error-message .msg-icon {
    margin-right: 15px;
}

.login-error-message .msg-title {
    font-weight: bold;
    color: red;
    margin: 0;
}

.login-error-message .errors {
    color: #6c757d;
}

.login-error-message p {
    margin: 0;
}

.messages {
    margin-bottom: 24px;
    padding: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #455a64;
    border: 1px red solid;
    border-radius: 4px;
}

.msg-icon {
    margin-left: 8px;
}

.msg-title {
    font-weight: 600;
    font-size: 14px;
    color: red;
}

.errors {
    margin-left: 16px;
    height: 100%;
    text-align: left;
    line-height: 20px;
}

.botaoEntrar {
    margin-top: 8px;
    width: 100%;
    height: 42px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    outline: none;
    background: #0b9444;
    color: #ffffff;
}

.botaoCadastrese {
    margin-top: 8px;
    padding: 9px 8px;
    width: 155px;
    height: 42px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    outline: none;
    background: #0b9444;
    color: #ffffff;
    text-align: center;
    text-decoration: none !important;
}

.errorDivModal{
    margin-top: 10px;
    align-items: center;
}

.botaoCadastrese:hover {
    background: #1ec965;
    text-decoration: none !important;
}

.botaoEntrar:hover {
    background: #1ec965;
}

.esqSenha {
    margin-top: 8px;
    font-size: 14px;
    line-height: 20px;
}

.esqSenha a {
    color: #455a64;
}

footer {
    color: #455a64;
    padding: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
}

.areaIlustra {
    display: flex;
    width: 50%;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;
    background-color: #F5F5F5;;
    box-shadow: inset #e2e2e2 8px 0px 7px;
}

.ilustra {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.img-responsiva {
    max-width: 100%;
    max-height: 80vh;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.language {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.language > a:link {
    text-decoration: none;
    margin: 0 5px;
}

.language img {
    width: 32px;
    height: auto;
    transition: filter 0.3s;
}

.disabled {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

.disabled:hover {
    filter: grayscale(10%);
    -webkit-filter: grayscale(10%);
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.modal-body {
    padding: 15px;
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

.form-control {
    width: 100%;
    padding: 6px 12px;
    box-sizing: border-box;
}

@media screen and (max-width: 728px) {
    body {
        display: block;
    }

    .fomularioAcesso {
        padding: 0 10%;
    }

    .areaLogin {
        width: 100%;
        height: 92%;
    }

    .areaIlustra > .ilustra {
        display: none;
    }

    .areaIlustra {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: center;
        height: 8%;
        justify-content: center;
        background-color: #F5F5F5;
        box-shadow: inset #e2e2e2 8px 0px 7px;
    }

    .language {
        transform: scale(1.3);
    }

    .language > a {
        margin: 4px;
    }
}
