@font-face{
    font-family: 'Poppins', sans-serif;
    src: url("../fonts/Poppins-ExtraLight.ttf");
    src: url("../fonts/Poppins-Light.ttf");
    src: url("../fonts/Poppins-SemiBold.ttf");
}


:root{
   
    --color1:#4b8497;
    --color2:#5e5f5f;
    --color3:#b99c65;

}

*{
    margin: 0;
    padding: 0;
    outline: 0;
    appearance: 0;
    border: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

.bd{
    /* outline: 1px solid red; */
}

body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Poppins", sans-serif;
}


/********************************************************************/
/*SECTION*/
section{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}

section aside{
    width: 60%;
    background-color: var(--color3);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
section aside img{
    width: 80%;
}


/*ARTICLE*/
section article{
    width: 40%;
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* justify-content: center;
    align-items: center; */
    flex-direction: column;
}
section article img{
    width: 250px;
}
section article h2{
    color: var(--color2);
}
section article p{
    color: var(--color2);
    font-size: 0.9em;
}
section article table{
    width: 100%;
    margin: 10px auto;
}
section article table td{
    padding: 10px 0;
}
section article table label{
    color:var(--titulos);
    font-size: 0.8em;
    margin-left: 5px;
    font-weight: 600;
}
section article table label i{
    font-size: 0.9em;
    position: relative;
    right: 2px;
}

section article table input{
    outline: none;
}
section article table input{
    height: 40px;
    width:100%;
    font-size: 16px;
    padding: 0 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    font-family: inherit; 
}
section article table td.button input{
    background-color: var(--color1);
    color:white;
    width: 100%;
    height: 45px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    cursor: pointer;
    
}

section article form .field{
    position: relative;
    width: 100%;
 
}
 form .field .fa-eye{
    position: absolute;
    right: 15px;
    color:#ccc;
    top:70%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    cursor: pointer;
}
 form .field .fa-eye.active::before{
    color:#333;
    content: "\f070";
}


/*ERROR*/
.error-txt{
    text-align: center;
    color:crimson;
    font-size: 0.9em;
}
.error-txt i{
    position: relative;
    right: 2px;
}


/*COPY*/
section .copy{
    font-size: 0.8em;
    bottom: 20px;
    
    color: var(--color2);
    text-align: center;
    position: absolute;
    
}
section .copy a{
    color:var(--links);
    font-weight: 600;
}


/*RESPONSIVE*/

@media only screen and (min-width : 200px) {
    /* Styles here */
        /* body{
            background-color: red;
        } */

        section aside{
            display: none;
        }
        
      

    }

    @media only screen and (min-width : 320px) {
    /* Styles here */
        /* body{
            background-color: blue;
        } */
        section aside{
            display: none;
        }
        
        /*ARTICLE*/
        section article{
            width: 70%;
        }
        section article img{
            width: 200px;
        }
        section article h2{
            text-align: center;
        }
        section article p{
            text-align: center;
        }
        

     
        
    }

    @media only screen and (min-width : 768px) {
    /* Styles here */
        /* body{
            background-color: pink;
        } */

        section aside{
            display: none;
        }
        
        


        
    }

    @media only screen and (min-width : 1200px) {
    /* Styles here */
        /* body{
            background-color: yellow;
        } */

        section aside{
            display:flex;
        }
        
        /*ARTICLE*/
        section article{
            width: 40%;
        }
        section article img{
            width: 250px;
        }
        section article h2{
            text-align: left;
        }
        section article p{
            text-align: left;
        }

    }

    @media only screen and (min-width : 1600px) {
    /* Styles here */
        /* body{
            background-color: green;
        } */
    }
