#area-container {
    width: 100%;
    height: 100vh;
    display: flex;
}

#area-container .area-login{
    width: 100%;
    /*background: #1571ac;*/
	background: #fff;
    display: flex;
	flex-direction: column;
	gap: 18px;
    justify-content: center;
    align-items: center;
}

#area-container .area-imagem {
    width: 50%;
    animation: up 1s;
}

#form-login {
    margin: 0 auto;
    border-radius: 35px;
    position: relative;
    background: #1571ac;
    width: 500px;
	color: white;
    height: auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: up 0.9s;
}

@keyframes up {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#form-login h1 {
    font-size: 25px;
    font-weight: 300;
}

#form-login input {
    margin: 15px 0;
    width: 350px;
    padding: 8px;
    border-radius: 5px;
    border: none;
    border-bottom: 1px solid #ccc;
    color: #696969;
    font-weight: 300;
    font-size: 16px;
}

#form-login button {
    margin-top: 15px;
    width: 350px;
    background: #3394ce;
    padding: 8px;
    border-radius: 10px;
    border: none;
    color: white;
    font-weight: 300;
}

#form-login button:hover {
    background: #5baada;
}

.footer-login {
    width: 350px;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
}

:root {
    --bg-color-text-alert: rgb(192, 58, 58);
    --bg-color-alert: rgb(241, 97, 97);
}

#alert-msg {
    border-bottom: 1px solid var(--bg-color-alert);
    border-radius: 5px;
    color: var(--bg-color-text-alert);
    width: 300px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-content: center;
}

#alert-msg h1 {
    font-size: 16px;
    font-weight: 300;
}

#alert-msg i {
    cursor: pointer;
    font-size: 14px;
}


/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/

@media screen and (max-width: 1100px) {
    #area-container .area-imagem {
        display: none;
    }
     {
        width: 100%;
    }
}
