@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.container-login {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
}

.images{
     display: flex;
     width: 70%;
    justify-content: center;
    align-items: center;
}

.DefesaCivil{
    width: 30%;
    height: auto; 
    margin: 0 auto 25px auto; 
}

.ihalagou{
    width: 40%;
    height: auto; 
    margin: 0 auto 25px auto; 
    display: flex;
}

.img-box {
    width: 50%;
    height: 100%;
    background-color: #19194F;
    padding: 20px;
    border-top-right-radius: 20%;
    box-shadow: 2px 2px 5px #888;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* mantém proporção */
    border-top-right-radius: 20%;
    filter: brightness(80%);
}

.content-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
}

.form-box {
    width: 60%;
}



.content-box .form-box .ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-box .form-box .ul li {
    list-style: none;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 7px;
    cursor: pointer;
    transition: 0.3s;
}

.content-box .form-box .ul li:hover {
    background: #e4e4e4;
}

.form-box .ul li img {
    width: 40px;
}

.content-box .form-box h2 {
    color: #19194F;
    font-weight: 600;
    font-size: 1.5em;
    margin-bottom: 10px;
    text-align: left; 
}

.line{
    width: 100%;
    height: 4px;
    background-color: #FE3C00;
    margin-bottom: 30px;
}

.content-box .form-box .input-box {
    margin-bottom: 20px;
}

.content-box .form-box .input-box input {
    width: 100%;
    padding: 20px;
    outline: none;
    font-weight: 400;
    border: none;
    font-size: 17px;
    color: #32324f;
    background-color: #F0F0F0;
    border-radius: 10px;
}

.content-box .form-box .input-box span {
    font-size: 18px;
    margin-bottom: 8px;
    display: inline-block;
    color: #32324f;
    font-weight: 600;
}

.content-box .form-box .input-box input::placeholder {
    color: #a9adb6;
}

.content-box .form-box .input-box input[type=submit] {
    background: #FE3C00;
    color: #fff;
    outline: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
     box-shadow: 2px 2px 4px #292828;
}

.content-box .form-box .input-box input[type=submit]:hover {
    background: #19194F;
}

.content-box .form-box .remember{
    margin-bottom: 20px;
    color: #32324f;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.content-box .form-box .remember a{
    text-decoration: none;
    color: #4aa4ee;
}
.content-box .form-box .remember a:hover{
    color: #3286ca;
}

.content-box .form-box .input-box p {
    color: #32324f;
}
.content-box .form-box .input-box p a{
    color: #4aa4ee;
}

.content-box .form-box .input-box p a:hover{
    color: #3286ca;
}
.content-box .form-box h3
{
    color: #607d8b;
    text-decoration: none;
    margin: 40px 0 15px;
    font-weight: 500;
    text-align: center;
    font-size: 22px;
}
@media (max-width:868px) {
    .container-login .img-box{
        display: none;
    }
    .container-login .content-box{
        width: 100%;
    }
    .container-login .content-box .form-box{
        width: 100%;
        padding: 40px;
        background: white;
        margin: 50px;
    } 
    .container-login .content-box .form-box h3{
        margin: 30px 0 10px;
    } 
}
@media (max-width:450px) {
    .container-login .content-box .form-box .remember{
        flex-wrap: wrap;
    }
    .container-login .content-box .form-box .remember a{
        margin-top: 20px;
    }
    
}
