/*
----------------------------------------------------------------------------------------

* FONTS
*
*   - Fonte para títulos, navbar do menu e botões
      Montserrat
      font-family: 'Montserrat', sans-serif;
*
*   - Fonte padrão de textos
      Roboto
      font-family: 'Roboto', sans-serif;

----------------------------------------------------------------------------------------

* CSS TABLE OF CONTENTS
*
*   1.0 - customização base
*   2.0 - reset
*   3.0 - conteúdo
*   4.0 - media query

----------------------------------------------------------------------------------------
*/
/*  -------------------------------------------------------------------------------------
    1.0 - CUSTOMIZAÇÃO BASE
-------------------------------------------------------------------------------------   */
html, body {
    overflow-x: hidden;
    font-size: 16px;
}

body {
    overflow-x: hidden;
    overflow-y: hidden;
    background-color: #F4F4F4;
}

p {
    color: #707070;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    margin-top: 15px;
    text-indent: 25px;
}

h1 {
    color: #00A0A5;
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin-bottom: 0;
}

    h1 small {
        font-size: 1.5rem;
        font-weight: 400;
    }


h2 {
    color: #00A0A5;
    font-size: 1.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin-bottom: 0;
}

    h2 small {
        font-size: 1.2rem;
        font-weight: 400;
    }

span {
    font-weight: 700;
}

a {
    color: white;
}

/*  -------------------------------------------------------------------------------------
    2.0 - RESET
-------------------------------------------------------------------------------------   */

/* extra container sizes */
@media (max-width: 500px) {
    html, body {
        font-size: 14px;
    }
}

/*  -------------------------------------------------------------------------------------
    3.0 - CONTEÚDO
-------------------------------------------------------------------------------------   */
main {
    background-image: url('../../img/Site/login_cliente_background_escuro.png');
    /*background-image: url('../../img/Site/login_cliente_background_claro.png');*/
    background-position: center;
    background-size: cover;
    background-repeat: repeat;
    height: 100vh;
    width: 100%;
}

/* -------------- LADO ESQUERDO - CADASTRO -------------- */
.area-cadastro {
    display: flex;
    justify-content: center;
    align-items: center;
}

.area-cadastro-cadastrar {
    max-width: 538px;
    margin: 0 10px 0 50px;
    position: absolute;
    top: 65%;
    transform: translateY(-50%);
    text-align: justify;
}

.cadastrar-button {
    display: inline-block;
    width: 100%;
    padding: 8px 25px;
    color: white;
    font-weight: 500;
    text-align: center;
    background: #00A0A5;
    box-shadow: -5px 5px 10px rgba(181, 184, 190, 0.2), 5px -5px 10px rgba(181, 184, 190, 0.2), -5px -5px 10px rgba(245, 248, 255, 0.9), 5px 5px 13px rgba(181, 184, 190, 0.9), inset 1px 1px 2px rgba(245, 248, 255, 0.3), inset -1px -1px 2px rgba(181, 184, 190, 0.5);
    border-radius: 5px;
    transition: 0.5s ease-in-out all;
}

    .cadastrar-button:hover {
        color: white;
        text-decoration: none;
        box-shadow: -20px 20px 40px rgba(180, 184, 188, 0.2), 20px -20px 40px rgba(180, 184, 188, 0.2), -20px -20px 40px rgba(244, 250, 254, 0.9), 20px 20px 50px rgba(180, 184, 188, 0.9), inset 1px 1px 2px rgba(244, 250, 254, 0.3), inset -1px -1px 2px rgba(180, 184, 188, 0.5);
    }

/* -------------- LADO DIREITO - LOGIN -------------- */
.area-login {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 700;
    /*background: url('../../img/Site/login-side-background2.svg');*/
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
}

    .area-login a:hover {
        color: white;
        text-decoration: none;
    }

.area-login-logar {
    max-width: 538px;
    margin: 0 75px 0 95px;
    text-align: justify;
}

/* botões para trocar tipo de login */
.button-pessoa-fisica {
    display: inline-block;
    max-width: 170px;
    width: 100%;
    margin: 0 2px 10px 0;
    padding: 3px 10px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    background: #00A0A5;
    box-shadow: -5px 5px 10px rgba(45, 45, 46, 0.2), 5px -5px 10px rgba(45, 45, 46, 0.2), -5px -5px 10px rgba(83, 83, 86, 0.9), 5px 5px 13px rgba(45, 45, 46, 0.9);
    border-radius: 5px;
    transition: 0.5s ease-in-out all;
}

    .button-pessoa-fisica:hover {
        background: #018F94;
        color: white;
        text-decoration: none;
    }

.button-pessoa-juridica {
    display: inline-block;
    max-width: 170px;
    width: 100%;
    margin: 0 0 10px 2px;
    padding: 3px 10px;
    color: #E9E9E9;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    transition: 0.5s ease-in-out all;
}

    .button-pessoa-juridica:hover {
        background: rgba(255, 255, 255, 0.7);
        color: white;
        text-decoration: none;
    }

/* campo login */
.campo-form {
    background: white;
    color: #504E5F;
    border: none;
    margin-bottom: 10px;
    padding: 8px 18px;
    font-weight: 500;
    box-sizing: border-box;
    border-radius: 5px;
    width: 100%;
    height: auto;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

    .campo-form::placeholder {
        color: #7B7B7B;
        font-size: 0.9rem;
    }

    .campo-form:focus {
        outline: none;
    }

.login-button {
    display: inline-block;
    width: 100%;
    padding: 8px 25px;
    font-weight: 500;
    color: white;
    text-align: center;
    background: #00A0A5;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    transition: 0.5s ease-in-out all;
}

    .login-button:hover {
        background: #018F94;
        color: white;
        text-decoration: none;
    }

/*  -------------------------------------------------------------------------------------
    4.0 - MEDIA QUERY
-------------------------------------------------------------------------------------   */
@media (max-width: 767px) {
    /* arrumar imagem de fundo */
    .area-login {
        background-image: none;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.33)), rgba(51, 51, 51, 0.5);
    }

    .area-login-logar {
        margin: 15px;
    }

    /* arrumar posição dos botões */
    .button-pessoa-fisica, .button-pessoa-juridica {
        margin: 0 0 10px 0;
    }

    /* retirar área de cadastro lateral */
    .area-cadastro {
        display: none;
    }
}


.cursor-pointer {
    cursor: pointer;
}

.hero-button {
    display: inline-block;
    padding: 10px 40px;
    color: white;
    font-size: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    background: #368387;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
}
