*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    color: var(--button-primary);
    text-decoration: none;
}

body{
    --background: #FAFAFA;
    --white: #FFFFFF;
    --black: #000000;
    --button-primary: #4b5638;
    --border-primary: #141414;

    
    background-image: url(assets/fundo-preto3.png);
    height: 100%;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 18px;

}

#wrapper{
    height: 100vh;
}

#container{
    margin: 0 auto;
    min-height: 100%;
    width: 800px;
    display: flex;
    align-items: center;
}

.column {
    flex-grow: 1;
    width: 50%;
}

.left { /* Lado esquerdo*/
    background-image: url(assets/imagem-login.png);
    background-size: 620px;
    background-repeat: no-repeat;
    background-position: center;
    height: 550px;
    margin-bottom: 50px;
}

.right { /* Lado direito*/
    padding-left: 30px;

}

.login-painel { /*Estilizei o campo de login e senha*/
    background-color: #141414;
    border: 5px solid #141414;
    border-radius: 20px;
    text-align: center;
    padding: 5px 0;
}

.logo-img {
    width: 175px;
}

form{ /*Estilizei os campos dentro do formulário*/
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

input[type="password"], input[type="text"]{ /*Estilizei os botões*/
    background-color: var(--white);
    border: 1px solid var(--border-primary);
    height: 40px;
    border-radius: 4px;
    margin-top: 10px;
    padding: 10px;
    font-size: 13px;
    width: 320px;
    color: var(--black);
}

input[type="password"]::placeholder, input[type="text"]::placeholder{ /*Defini a cor do texto pronto dentro dos campos*/
    color: rgb(165, 164, 164);

}

input[type="password"]:focus, input[type="text"]:focus{ /* Tirei a borda ao clicar no campo*/
    outline: 0;
    border: 1px solid #a1a1a1;
}

input[type="submit"]{ /* Botão de entrar*/
    width: 320px;
    margin-top: 10px;
    height: 30px;
    border: 0;
    background: linear-gradient(
    135deg,
    #4b5638,
    #263124
    );
    color: var(--white);
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    cursor: pointer;
}



.infobox {
    background: linear-gradient(
    135deg,
    #4b5638,
    #263124
    );
    color: #FFFFFF;
    height: 60px;
    border: 1px solid var(--border-primary);
    border-radius: 10px;
    padding: 20px 0;
    margin: 10px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;

}

.infobox p{
    
    margin-right: 5px;
}

.infobox p a{
    font-weight: bold;
    user-select: none;
}

.infobox a {
    color: #d4c29a;
}

.get-app-painel {
    text-align: center; 
    padding-top: 20px;
    
}

.app-buttons {
   margin-top: 16px;
    
}

.app-buttons img{
    height: 40px;
    padding: 0 2px;
    
}

footer{
    text-align: center;
    height: 50px;
    margin-top: 50px;
}

footer a{
    color: var(--white);
    text-transform: uppercase;
    font-weight: bold;
    margin-right: 8px;
}

.text-small {
    font-size: 12px;
    font-weight: bold;
    color: grey;
    text-transform: uppercase;
    padding-left: 20px;
    display: inline-block;
}

/*Página Cadastro*/

#container-cadastro{
    margin: 0 auto;
    min-height: 100%;
    max-width: 400px;
    display: flex;
    align-items: center;
}

.message{
    margin: 10px 70px;
}

.message span{
    text-align: center;
    font-size: 17px;
    font-weight: bold;
    line-height: 20px;
    color: #8e8e8e;
}

.cta-button {
    width: 320px;
    margin: 10px 0;
    height: 35px;
    background-color: var(--button-primary);
    color: var(--white);
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.divisor-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0px;
}

.line { /* Linha da divisória */
    height: 1px;
    background-color: var(--border-primary);
    width: 35%;
}

.divisor-tag { /* palavra "ou" */
    font-weight: bold;
    margin: 0 2.5;
    color: #8e8e8e;
    padding: 10px;
    user-select: none;
}

/*FIM Página Cadastro*/

/*Responsividade*/

@media(max-width: 850px){
    .left{
        display: none;
    }

    #container{
    width: 70%;
    }
    .right{
        padding-left: 0;
    }
}

@media (max-width: 560px) {
    #container{
        width: 90%;
    }

    #container-cadastro {
        width: 90%;
    }

    input[type="password"], input[type="text"], input[type="submit"] {
        width: 80%;
    }

    .cta-button {
        width: 85%;
    }

    .message {
        margin: 10px 25px;
    }

    footer a {
        font-size: 11px;
    }

    .text-small{
        font-size: 10px;
    }

}
