* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #3C96ED;
}

button {
    cursor: pointer;
}

body {

    --background: #FAFAFA;
    --white: #FFFFFF;
    --black: #000000;
    --buttonPrimary: #0095F6;
    --borderPrimary: #E6E6E6;

    background-color: var(--background); 
    width: 100%;
    height: 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 {
    background-image: url('/assets/main-foto.png');
    background-size: 450px;
    background-repeat: no-repeat;
    background-position: center;
    height: 600px;
    margin-bottom: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.right {
    padding-left: 20px;
}

.loginPanel {
    background-color: var(--white);
    border: 1px solid #E6E6E6;
    text-align: center;
    padding: 20px 0;
}

.logoImg {
    width: 175px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

input[type="text"],
input[type="password"] {
    background-color: var(--white);
    border: 1px solid var(--borderPrimary);
    height: 40px;
    border-radius: 4px;
    margin-top: 10px;
    padding: 10px;
    font-size: 13px;
    width: 320px;
    color: #000000;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder {
    color: rgb(165,164,164);
}

input[type="text"]:focus,
input[type="password"]:focus {
    outline: none;
    border: 1px solid var(--borderPrimary);
}

input[type="submit"] {
    width: 320px;
    margin-top: 10px;
    height: 30px;
    border: none;
    background-color: var(--buttonPrimary);
    color: var(--white);
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    cursor: pointer;
}

.infoBox {
    background-color: var(--white);
    height: 60px;
    border: 1px solid var(--borderPrimary);
    margin: 10px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.infoBox p a {
    font-weight: bold;
    user-select: none;
}

.getApp {
    margin-top: 20px;
    text-align: center;
}

.appButton {
    margin-top: 16px;

}

.appButton img {
    height: 40px;
    padding: 0 2px;
}

footer {
    text-align: center;
    height: 50px;
    margin-top: -50px;
}

footer a {
    color: var(--black);
    text-transform: uppercase;
    font-weight: bold;
    margin-right: 10px;
}

.textSmall {
    font-size: 12px;
    font-weight: bold;
    color: gray;
    text-transform: uppercase;
    display: inline-block;
    padding-left: 20px;
}



/**/

#containerCadastro {
    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;
}

.ctaButton {
    width: 320px;
    margin-top: 10px 0;
    height: 35px;
    background-color: var(--buttonPrimary);
    border: none;
    border-radius: 4px;
    font-size: 15px;
    color: var(--white);
    cursor: pointer;
    font-weight: bold;
}

.divisorContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

.line {
    height: 1px;
    background-color: var(--borderPrimary);
    width: 35%;
}

.divisorTag {
    font-weight: bold;
    margin: 0 2.5%;
    color: #8E8E8E;
    user-select: none;
}




/*
*/

@media (max-width: 850px) {
    .left {
        display: none;
    }

    #container {
        width: 70%;
    }

    .right {
        padding-left: 0;
    }
}

@media (max-width: 560px) {
    #container {
        width: 90%;
    }

    #containerCadastro {
        width: 90%;
    }

    input[type="text"],
    input[type="password"],
    input[type="submit"],
    .ctaButton {
        width: 85%;
    }

    .message {
        margin: 10px 25px;
    }
}