:root{
    --branco: #ffffff;
    --branco2: #F4F4F4;
    --branco3: #FAFAFA;
    --branco4: #F6F6F6;
    --brancoBackground: #f7fafd;
    --azulMuitoJogo: #1d0b38;
    --roxoMuitoJogo: #4B1248;
    --cinza1: #D9D9D9;
    --cinza2: #9197B3;
    --cinza3: #838383;
    --cinza4: #585858;
    --cinza5: #E7E7E7;
    --inter: 'Inter', sans-serif;
    --poppins: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body{
    font-family: var(--inter);
}

.app{
    /*background: no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;*/
    background-color: var(--azulMuitoJogo);
}

.app header{
    height: 85px;
    margin: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.header-logo img{
    height: 60px;
    width: auto;
}

.header-title span{
    color: var(--branco);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -0.14px;
}

.app main{
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app_login{
    background-color: #f5f5f5;
}

.footer{
    padding: 1rem;
    text-align: left;
    color: rgba(255,255,255,0.5);
    font-size: .8rem;
}

a{
    color: inherit;
}

a:hover{
    color: inherit;
    text-decoration: none;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 8px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.json-output {
    font-family: monospace;
    font-size: 14px;
    background-color: #f5f5f5;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: auto;
}

input:focus, button:focus{
    outline: none;
}

@media only screen and (min-width: 500px) {
    .app{

    }

    .app header{
        height: 150px;
        display: flex;
        align-items: center;
        gap: 4.5rem;
        flex-direction: row;
        margin: 0 1rem 2rem;
    }

    .app main{
        min-height: 600px;
    }

    .app footer{
        margin: 0 5rem;
    }

}

@media only screen and (min-width: 768px) {
    .app header{
        margin: 0 5rem;
    }
}

@media only screen and (max-width: 720px) {
    .header-logo img {
        height: 42px;
    }

    .app header {
        height: 50px;
        gap: 0;
        margin: 1.2rem;
    }

    .header-title span {
        font-size: 12px;
    }
}

input{
    accent-color: var(--roxoMuitoJogo);
}
