/*validacao input*/

.invalid{

    border: 2px solid rgb(248, 46, 46) !important; 
}

.valid{
    border: 2px solid rgb(49, 209, 49) !important;

}

/*icons*/


#valid, #valid1{
    position: relative;
    right: 7px;
    visibility: hidden;
    color: rgb(49, 209, 49);
}

#invalid, #invalid1{
    position: relative;
    left: 15px;
    top: 2px;
    visibility: hidden;
    color: rgb(248, 46, 46);
}


span{
    font-style: italic;
    font-size: 17px;
}


/*conteudo*/

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



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

.img-box {
    width: 50%;
    height: 100%;
    background-color: #8E2424;
    padding: 20px;
}

.img-box img {
    width: 100%;
    height: 100%;
}

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

.form-box {
    width: 50%;
}

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

.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;
}

.ul li:hover {
    background: #e4e4e4;
}

.ul li img {
    width: 40px;
}

.form-box h2 {
    font-weight: 600;
    font-size: 2em;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-align: center;
}

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

.input-box input {
    width: 100%;
    padding: 10px;
    outline: none;
    font-weight: 400;
    border: none;
    font-size: 17px;
    background-color: #ecf2f7;
    border-radius: 5px;
}


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

.input-box input[type=submit] {
    color: #fff;
    outline: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
    font-size: 20px;

}

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

#entra {
    background-color: #8E2424;
}

#entra:hover {
    background-color: #fff;
    color: #8E2424;
    border: 1px solid #8E2424;
}

.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;
    }
    
}

