@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
body {
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    background-color: #fff;
    color: #000;
}
.header {
    display: flex;
	width:auto;
    align-items: center;
    background-color: #fdf07d;
    color: rgb(0, 0, 0);
    padding: 1.875rem 2.5rem; /* 30px 40px */
}
.logo-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 5%;
}

.logo-area img {
    max-width: 18.75rem; /* 300px */
    height: auto;
}

.titulo {
    text-align: center;
    font-size: 1.75rem; /* 28px */
    line-height: 1.2;
    font-weight: bold;
    text-transform: uppercase;
    margin-left: 9.375rem; /* 150px */
    display: flex;
}

.conteiner_decreto {
    display: flex;
    align-items: center;
    padding: 1.875rem 2.5rem; /* 30px 40px */
    text-align: center;
}

.text_decreto {
    text-align: center;
    text-transform: uppercase;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: normal;
    line-height: 1.2;
    max-width: 56.25rem; /* 900px */
    margin: 0 auto;
    font-size: 1.25rem; /* 20px */
}

.label_cpf {
    font-family: Arial, sans-serif;
    font-size: 0.875rem; /* 14px */
    font-weight: 600;
    margin-bottom: 0.3125rem; /* 5px */
    display: block;
    color: #333;
}

.asterisco {
    color: red;
    font-weight: bold;
}

.input_cpf {
    width: 100%;
    max-width: 18.75rem; /* 300px */
    padding: 0.625rem 0.75rem; /* 10px 12px */
    font-size: 1rem; /* 16px */
    text-align: center;
    border: 0.0625rem solid #ccc; /* 1px */
    border-radius: 0.375rem; /* 6px */
    margin-top: 0.3125rem; /* 5px */
    outline: none;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.mensagem_cpf {
    font-size: 0.875rem; /* 14px */
    color: #666;
    margin-top: 0.5rem; /* 8px */
    font-family: Arial, sans-serif;
}

.conteiner_cpf {
    text-align: center;
    margin: 1.875rem 0 1.25rem; /* 30px 0 20px */
}

.conteiner_busca_cpf {
    text-align: center;
    margin-top: 1.25rem; /* 20px */
}

.buscar_cpf {
    background-color: #8b0000;
    color: white;
    border: none;
    padding: 0.875rem 1.25rem; /* 14px 20px */
    border-radius: 0.375rem; /* 6px */
    font-size: 1rem; /* 16px */
    cursor: pointer;
    width: 10%;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.buscar_cpf:hover {
    background-color: #5e1818;
}

@media (max-width: 48rem) { /* 768px */
    .header {
        flex-direction: column;
        align-items: center;
        padding: 1.25rem; /* 20px */
        text-align: center;
    }

    .logo-area {
        margin-left: 0;
        align-items: center;
    }

    .logo-area img {
        max-width: 12.5rem; /* 200px */
    }

    .titulo {
        margin-left: 0;
        font-size: 1.375rem; /* 22px */
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .conteiner_decreto {
        padding: 1.25rem; /* 20px */
    }

    .text_decreto {
        font-size: 1rem; /* 16px */
        padding: 0 0.625rem; /* 0 10px */
    }

    .input_cpf {
        max-width: 90%;
        font-size: 0.875rem; /* 14px */
    }

    .mensagem_cpf {
        font-size: 0.75rem; /* 12px */
    }

    .buscar_cpf {
        width: 90%;
        font-size: 0.875rem; /* 14px */
        padding: 0.625rem; /* 10px */
    }
}
