@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

#bodyPgForm {
    background-image: url("../img/bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-clip: content-box;
    background-size: cover;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* SESSÃO DE CADASTRO DE FORMULÁRIO */
#formCadastroSorteador {
    background-color: white;
    padding: 2rem;
    border-radius: .5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#tituloForm {
    text-transform: uppercase;
}

#formCadastroSorteador .form_controler {
    display: flex;
    flex-direction: column;
}

.form_controler label,
.form_controler input,
.form_controler select {
    font-size: 1.4rem;
    outline: none;
    
}

#inputCadastrar {
    font-size: 1.2rem;
    padding: 1rem;
    border: none;
    cursor: pointer;
    background-color: #29b329;
    color: white;
    text-transform: uppercase;
    border-radius: .4rem;
    transition: .3s;
}

#inputCadastrar:hover {
    background-color: #402022;
}

#msg_erro_cpf {
    color: red;
    color: red;
    font-size: 1.2rem;
    font-weight: bold;
}

/* CONTAINER ESCONDIDO QUE É MOSTRADO SOMENTE CASO O USUÁRIO CONSIGA SE CADASTRAR */
.container_escondido {
    background-color: white;
    padding: 1rem;
    border-radius: .4rem;
}

.resumo_container_escondido {
    text-align: center;
}

#titulo_container_escondido {
    margin-bottom: 1rem;
}

#nome_completo_sorteado {
    font-size: 1.2rem;
}

#numero_sorteado_titulo {
    font-size: 1.2rem;
}

#numero_cpf_sorteado {
    font-size: 1.2rem;
}

#numero_sorteado {
    font-size: 3rem;
    color: #29b329;
    font-weight: bold;
}

.container_escondido {
    display: none;
}

/* FORMATAÇÃO DA MENSAGEM DE ERRO */
#msg_erro {
    color: red;
    font-size: 1.2rem;
    font-weight: bold;
    display: none;
}
