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

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

body{
    min-width: 100vw;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../assets/logoHead.png);
    background-size: 50vw;
    background-position: center;
    background-repeat:repeat-x;
}

main.container{
    border: solid rgb(0, 0, 0) 1px;
    overflow: hidden;
    width: 100%;
    height: 80vh;
    display: flex;
    box-shadow: 12px 12px 25px rgb(0, 0, 0, .212);
    background-color: #fff;
    border-radius: 5px;
    -webkit-animation: fadeInLeft 1s both;
    -o-animation: fadeInLeft 1s both;
    -moz-animation: fadeInLeft 1s both;
    animation: fadeInLeft 1s both;
}

.containerRight{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    -webkit-animation: fadeInTop 1s both;
    -o-animation: fadeInTop 1s both;
    -moz-animation: fadeInTop 1s both;
    animation: fadeInTop 1s both;
}

.logo-ipoe{
    font-family: 'Staatliches', sans-serif;
    text-transform: uppercase;
    font-weight: 100;
    font-size: 50pt;
    color: #0780ae;
    -webkit-animation: fadeInLeft 1s both;
    -o-animation: fadeInLeft 1s both;
    -moz-animation: fadeInLeft 1s both;
    animation: fadeInLeft 1s both;
}


.header-bottom{
    margin-bottom: 5%;
    display: flex;
    position: absolute;
    z-index: 1;
    width: 100%;
    padding: 0.1% 1.5%;
    top: 0;
    left: 0;
}


.form{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-width: 80%;
    padding: 5%;
    display: block;

    margin-bottom: 20px;
}

form{
    display: flex;
    flex-direction: column;
}

.formImage{
    display: flex;
    justify-content: left;
    float: left;
    width: 50%;
    height: 80vh;
    border-radius: 5px;
    -webkit-animation: fadeInLeft 1s both;
    -o-animation: fadeInLeft 1s both;
    -moz-animation: fadeInLeft 1s both;
    animation: fadeInLeft 1s both;
}

.formImage img{
    width: 100%;
    height: 100%;
    border-radius: 5px 0 0 5px;
}


h2{
    text-align: center; /* left para fazer quebra, após declarar "float: left" em img */
    margin-bottom: 3%;
    font-size: 20pt;
    width: 100%;
    font-family: 'Quicksand', sans-serif;

}

.logo{
    margin-top: 20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    
}

.containerTitle{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    float: left;

}

.subtitle{
    font-size: 10pt;
    text-align: center;
    margin-bottom: 15px;
    min-width: 100%;
}


input{
    padding: 2px 2px 2px 28px;
    min-width: 300px;
    min-height: 36px;
    border-radius: 3px;
    border: solid rgb(194, 194, 194) 1px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 11pt;
    
}



.inputContainer{
    position: relative;
    width: fit-content;
    display: block;
}

.fa-user{
    position: absolute;
    margin-top: 9px;
    margin-left: 8px;
    color: #000;
    font-size: 16px;
}

.fa-lock{
    position: absolute;
    margin-top: 29px;
    margin-left: 8px;
    color: #000;
    font-size: 16px;
}

@keyframes shake{
    0%{
        transform: translateX(0);
    }

    40%{
        transform: translateX(10px);
    }

    100%{
        transform: translateX(-10px);
    }
}

.error{
    position: absolute;
    display: block;
    margin-bottom: 9px;
    margin-top: 9px;
    font-family: 'Quicksand', sans-serif;
    font-size: 11pt;
    font-weight: 500;
    color: rgb(202, 3, 3);
    font-style: italic;
}


#password{
    margin-top: 20px;
}

input::placeholder{
    font-size: 11pt;
    font-weight: 600;
    
}

input:focus {
    box-shadow: 0 0 0 0;
    outline: 0;
    border: solid rgb(0, 132, 255) 1px;
    transition: ease-in-out 0.5s;

}

input:hover{
    transition: ease-in-out 0.5s;
    border: solid rgba(51, 156, 255, 0.921) 1px;
}



.containerButton{
    display: flex;
   justify-content: left;
   align-items: center;
}

button{
    padding: 5px;
    min-width: 300px;
    min-height: 36px;
    margin-bottom: 5px;
    border-radius: 5px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    cursor: pointer;
    font-size: 12pt;
    border: none;
    background: linear-gradient(to right, rgb(14, 129, 223), rgb(25, 60, 214));
    border: solid rgb(108, 141, 211) 1px;
    color: white;
    
}

button:hover{
    letter-spacing: 0.5px;
    transition: all 0.3s ease-in-out;
    background: linear-gradient(to left, rgb(14, 129, 223), rgb(25, 60, 214));
}

p, a{
    font-family: 'Quicksand', sans-serif;
    font-size: 11pt;
    font-weight: 600;
}

a{
    text-decoration: none;
}


.linkSingUp:hover{
    color: rgb(34, 141, 228);
}


.linkSingUp{
    color: rgb(13, 100, 240);
    
}

.linkSingUp:visited{
    color: rgb(13, 100, 240);
}

.forgotPass{
    display: flex;
    justify-content: right;
}

.forgotPassLink{

    font-size: 9pt;
    text-align: right;
    min-width: max-content;
    color: rgb(90, 90, 90);
    margin-top: 10px;
   
}

.forgotPassLink:visited{
    color: rgb(90, 90, 90);
}

.forgotPassLink:hover{
    color:rgb(61, 61, 61) ;
}

.singUpSection{
    margin-top: 15px;
}

/* testes configs responsividade (INACABADOS) --------------------------------------------------------*/

@media only screen and (max-width: 1024px) {

    body {
        background-image: url(../assets/logoHead.png);
        background-size: 100vh;
    }

    .formImage{
        display: none;
    }

    .containerRight{
        width: 100vw;
        height: 70vh;
    }

    main.container{
        max-height: 70vh;
        width: 40vw;
    }
    


}

@media only screen and (max-width: 768px){

    body {
        background-image: url(../assets/logoHead.png);
        background-size: 100vh;
    }

    .containerRight{
        width: 100vw;
    }

    main.container{
        /* height: 70vh; */
        width: 55vw;
    }
} 

@media only screen and (max-width: 630px){
    body {
        background-image: url(../assets/logoHead.png);
        background-size: 100vh;
    }

    main.container{
        /* height: 70vh; */
        width: 70vw;
    }

}

@media only screen and (max-width: 450px){
    body {
        background-image: url(../assets/logoHead.png);
        background-size: 100vh;
    }

    /* .containerRight{
        width: 80vw;
    } */

    main.container{
        /* height: 70vh; */
        width: 90vw;
    }
}


@media only screen and (max-width: 425px){
    body {
        background-image: url(../assets/logoHead.png);
        background-size: 100vh;
    }

    .containerRight{
        width: 90vw;
    }
}

@media only screen and (max-width: 341px){
    body {
        background-image: url(../assets/logoHead.png);
        background-size: 100vh;
    }

    .containerRight{
        width: 98vw;
    }   
}


@media only screen and (max-width: 320px){
    body {
        background-image: url(../assets/logoHead.png);
        background-size: 100vh;
    }

    .containerRight{
        width: 97vw;
    }

    input{
        margin-left: 20px;
        min-width: 260px;
        min-height: 35px;
        border-radius: 3px;
        border: solid rgb(194, 194, 194) 1px;
        font-family: 'Quicksand', sans-serif;
        font-weight: 600;
        font-size: 10pt; 
    }

    input::placeholder{
        font-size: 10pt;
    }

    .fa-user{
        margin-top: 0.6em;
        margin-left: 29px;
    }
    
    .fa-lock{
        margin-top: 1.83em;
        margin-left: 29px;
    }

    .forgotPassLink{
        margin-right:20px;
    }

    .singUpSection{
        margin-left: 25px;
    }
    
    
}


@-webkit-keyframes fadeInLeft{
    0%{
        opacity: 0;
        -webkit-transform: translateX(-50px);
    }
    100%{
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@-o-keyframes fadeInLeft{
    0%{
        opacity: 0;
        -o-transform: translateX(-50px);
    }
    100%{
        opacity: 1;
        -o-transform: translateX(0);
    }
}

@-moz-keyframes fadeInLeft{
    0%{
        opacity: 0;
        -moz-transform: translateX(-50px);
    }
    100%{
        opacity: 1;
        -moz-transform: translateX(0);
    }
}

@keyframes fadeInLeft{
    0%{
        opacity: 0;
        transform: translateX(-50px);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInTop{
    0%{
        opacity: 0;
        transform: translateY(-50px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}

@-moz-keyframes fadeInTop{
    0%{
        opacity: 0;
        -moz-transform: translateY(-50px);
    }
    100%{
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-webkit-keyframes fadeInTop{
    0%{
        opacity: 0;
        -webkit-transform: translateY(-50px);
    }
    100%{
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-o-keyframes fadeInTop{
    0%{
        opacity: 0;
        -o-transform: translateY(-50px);
    }
    100%{
        opacity: 1;
        -o-transform: translateY(0);
    }
}


