@charset "UTF-8";
*{
    padding: 0;
    margin: 0;
    outline: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
    color: #3c96ed;
}
body{
    background-color: #fafafa;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 18px;
}
#wrapp{
    height: 100vh;
}
#conteiner{
    margin: 0 auto;
    min-height: 100%;
    width: 800px;
    display: flex;
    align-items: center;
    
}
.column{
    flex-grow: 1;
    width: 50%;
}
.left{
    background-image: url(assets/main-foto.png);
    background-size: 450px;
    background-repeat: no-repeat;
    background-position: center;
    height: 600px;
    margin-bottom: 50px;
}
.right{
    padding-left: 20px;
}
.login-panel{
    background-color: #fff;
    border: 2px solid #e6e6e6;
    text-align: center;
    padding: 20px 0;
}
.logo-img{
    max-width: 175px;
}
form{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
input[type="password"], input[type="text"]{
background-color: #fff;
border: 1px solid rgb(236, 234, 234);
height: 30px;
border-radius: 4px;
margin-top: 10px;
padding: 10px;
font-size: 13px;
width: 350px;
color: rgb(0, 0, 0);
}
input[type="password"]::placeholder, input[type="text"]::placeholder{
    color: rgb(165, 164, 164);
}
input[type="password"]:focus, input[type="text"]:focus{
    outline: none;
    border: 1px solid #a1a1a1;
}
input[type="submit"]{
    width: 350px;
    margin-top: 10px;
    height: 30px;
    border: 0;
    background-color: #3c96ed;
    border-radius: 4px;
    color: #fafafa;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}
.infobox{
    background-color: #fff;
    height: 60px;
    border: 1px solid rgb(236, 234, 234);
    margin: 10px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;

}
.infobox p a{
    font-weight: bold;
    user-select: none;
}
.get-app-panel{
    margin-top: 20px;
    text-align: center;
}
.get-app{
    margin-top: 16px;
}
.get-app img{
    height: 40px;
    padding: 0 2px;
}
footer{
    text-align: center;
    height: 50px;
    margin-top: -50px;
    
}
footer a{
    color: black;
    text-transform: uppercase;
    font-weight: bold;
    margin-right: 8px;
}
.text-small{
    font-size: 12px;
    color: #a1a1a1;
    text-transform: uppercase;
    display: inline-block;
    padding-left: 30px;
}
/* parte signup */
#conteiner-signup{
     margin: 0 auto;
    min-height: 100%;
    max-width: 800px;
    display: flex;
    align-items: center;
}
.message{
    margin: 10px 70px;
    color: #8e8e8e;
    font-size: 16px;
}
.message span{
    
    text-align: center;
    font-weight: bold;
    line-height: 20px;
    
}
.cta-button{
    margin: 10px 0;
    width: 350px;
    height: 30px;
    background-color: #3c96ed;
    color: #fff;
    font-weight: bold;
    border: 0;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
}
.divisor-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}
.line{
    height: 1px;
    background-color: #e6e6e6;
    width: 40%;
}
.divisor-tag{
    font-size: 15px;
    color: #8e8e8e;
    margin-left: 4px;
    margin-right: 4px;
    user-select: none;
}
/* fim signup */

/* responsividade*/

@media(max-width: 850px){
    .left{
        display: none;
    }
    #conteiner{
        width: 70%;
    }
    .right{
        padding-left: 0;
    }
}
@media(max-width: 560px){
    #conteiner{
        width: 90%;
    }
    #conteiner-signup{
        width: 90%;
    }
    input[type="text"] , input[type="password"],input[type="submit"]{
        width: 85%;
        
    }
   .cta-button{
    width: 85%;
  }
     .message{
    margin: 10px 25px;
  }
    
 
}
/* Fim de mais um projeto, com a graça do meu Deus, que a paz esteja sempre conosco*/