* {
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.contain {
    width: 800px;
    height: 480px;
    display: flex;
    border-radius: 12px;
    border: 2px solid #51a6cc;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background-color: #f4f7f6;
}

.login {
    width: 50%;
    border-radius: 0 12px 12px 0;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.baner {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    border-radius: 12px 0 0 12px;
    background: linear-gradient(#376d4bcc, #000000b3), url("../../documentos/img/BannerIMG.jpg");
    background-size: cover;
}

.banerInfos>img {
    width: 60px;
}

.banerInfos {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.banerInfos>h1,
.banerInfos>p {
    text-align: center;
    color: #ffffff;
}

.banerInfos>h1,
.loginInfos>h1 {
    font-size: 20pt;
}

.loginInfos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 80%;
}

.loginInfos>h1 {
    margin-bottom: 8px;
    color: #376d4b;
}

.loginInfos>p {
    font-size: 11pt;
    margin-bottom: 22px;
    color: #555555;
}

.input-wrapper {
    display: flex;
    margin-bottom: 10px;
    flex-direction: column;
}

.input-wrapper>label {
    margin-bottom: 8px;
    color: #376d4b;
    font-weight: bold;
}

.input-wrapper>input {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    border: 2px solid #51a6cc;
    background-color: #ffffff;
    text-indent: 10px;
    transition: all ease-in-out .2s;
}

.input-wrapper>input:focus {
    outline: none;
    border: 2px solid #376d4b;
}

.forgot-pass {
    text-align: right;
}

button {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    border: none;
    background-color: #8ec14a;
    color: white;
    font-size: 14pt;
    margin-top: 22px;
    margin-bottom: 22px;
    transition: all ease-in-out .2s;
}

button:hover {
    cursor: pointer;
    transform: scale(1.02);
    background-color: #376d4b;
}

#login-form {
    width: 100%;
}

.form-footer {
    text-align: center;
    color: #555555;
}

a {
    text-decoration: none;
    color: #51a6cc;
}

a:hover {
    text-decoration: underline;
    color: #376d4b;
}

/* Para telas menores que 850px (Tablets e Notebooks pequenos) */
@media (max-width: 850px) {
    .contain {
        width: 90%;
        height: auto;
        min-height: 480px;
    }
}

/* Para telas menores que 768px (Celulares) */
@media (max-width: 768px) {
    .contain {
        flex-direction: column;
        width: 90%;
        max-width: 400px;
    }

    .baner {
        width: 100%;
        height: 220px;
        border-radius: 10px 10px 0 0;
        padding: 20px 0;
    }

    .login {
        width: 100%;
        border-radius: 0 0 10px 10px;
        padding: 30px 0;
    }

    .banerInfos {
        width: 90%;
        gap: 10px;
    }

    .banerInfos > img {
        width: 45px;
    }

    .banerInfos > h1, 
    .loginInfos > h1 {
        font-size: 16pt;
    }

    .loginInfos > p {
        font-size: 10pt;
        text-align: center;
    }
}