/*
----------------------------------------------------------------------------------------

* 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 (min-width: 1450px) {
    .container {
        max-width: 1250px;
    }
}

@media (min-width: 1700px) {
    .container {
        max-width: 1400px;
    }
}

@media (max-width: 500px) {
    html, body {
        font-size: 14px;
    }
}

/*  -------------------------------------------------------------------------------------
    3.0 - CONTEÚDO
-------------------------------------------------------------------------------------   */
main {
    /*background-image: url('../../src/assets/img/background.png');*/
    background-image: url('../../img/background.png');
    /*background-image: url('../../img/Site/login-background.jpg');*/
    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;
    height: 100vh;
    width: 100%;
}


.area-cadastro-cadastrar {
    max-width: 538px;
    margin: 0 5px 0 25px;
    padding: 30px 25px;
    background: #FCFCFD;
    box-shadow: none;
    border-radius: 10px;
    text-align: justify;
}

.campo-form {
    background: #EDEDED;
    color: #504E5F;
    border: 1px #A3A3A3 solid;
    margin-bottom: 10px;
    padding: 8px 18px;
    font-weight: 500;
    box-sizing: border-box;
    border-radius: 5px;
    width: 100%;
    height: auto;
}

.selecao-tipo-conta {
    margin-bottom: 10px;
    padding: 0;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

    [type="radio"]:checked + label,
    [type="radio"]:not(:checked) + label {
        position: relative;
        padding-left: 25px;
        cursor: pointer;
        line-height: 17px;
        display: inline-block;
        color: #8A8A8A;
    }

        [type="radio"]:checked + label:before,
        [type="radio"]:not(:checked) + label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 18px;
            height: 18px;
            background: #ECECEC;
            border: 0.5px solid #8A8A8A;
            border-radius: 5px;
        }

        [type="radio"]:checked + label:after,
        [type="radio"]:not(:checked) + label:after {
            content: "";
            position: absolute;
            top: 0px;
            left: 0px;
            width: 18px;
            height: 18px;
            background: #46929F;
            background-image: url('../../img/Site/radio-correct.svg');
            background-repeat: no-repeat;
            background-position: center;
            border-radius: 5px;
            -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease;
        }

        [type="radio"]:not(:checked) + label:after {
            opacity: 0;
            -webkit-transform: scale(0);
            transform: scale(0);
        }

        [type="radio"]:checked + label:after {
            opacity: 1;
            -webkit-transform: scale(1);
            transform: scale(1);
        }

.selecao-tipo-conta input {
    margin: 0;
    padding: 0;
}

.campo-form::placeholder {
    color: #7B7B7B;
    font-size: 0.9rem;
}

.campo-form:focus {
    outline: none;
}

.cadastrar-button {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    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);
    }

.frase-botao {
    color: #504E5F;
    font-weight: 700;
    font-size: 0.9rem;
}

    .frase-botao:hover {
        color: #504E5F;
        text-decoration: none;
    }

/* -------------- 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-logar {
    max-width: 538px;
    width: 100%;
    margin: 0 75px 0 95px;
    text-align: justify;
}

    .area-login-logar p {
        color: white;
        text-align: left;
        text-indent: 0;
        margin: 0;
    }

.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) {
    .area-login {
        display: none;
    }

    .area-cadastro-cadastrar {
        margin: 5px;
        padding: 40px 15px;
    }
}
