*{
    font-size: 18px;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: rgb(33, 33, 33) ;
}
.cardi{
    background: rgb(14,19,28);
    background: linear-gradient(0deg, rgba(14,19,28,1) 0%, rgba(28,46,69,1) 100%);
    padding: 2.5rem;
    border-radius: 1.3rem;
    width: 550px;
}
.star{
    display: flex;
    width: 64px;
    height: 64px;
    background-color: hsl(213, 19%, 18%);
    padding: 1rem;
    border-radius: 50%;
}
.title{
    color: white;
    font-size: 2rem;
}
.descricao{
    font-size: 1rem;
    color: hsl(216, 12%, 54%);
    font-weight: bold;
}
.form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.inputs{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    gap: 1rem;
}
.inputs::after{
    content: "";
    clear: both;
}
.input{
    display: flex;
    border: 0;
    border-radius: 50%;
}
.input label{
    background-color: hsl(213, 19%, 18%);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    color: hsl(216, 12%, 54%);
    font-weight: bold;
    white-space: nowrap;
}
.input label span{
    position: fixed;
    z-index: 1;
}
.input input[type=radio]{
    position: relative;
    all: unset;
    width: 64px;
    height: 64px;
    border-radius: 50%;
}
label:hover{
    background-color: hsl(216, 12%, 54%);
    color: white;
}
.input input[type=radio]:checked{
    background-color: hsl(25, 97%, 53%);
}
.button{
    display: flex;
    justify-content: center;
    text-align: center;
    background-color: hsl(25, 97%, 53%);
    padding: 1rem;
    border: 0;
    border-radius: 3rem;
    color: white;
    font-weight: bold;
    width: 100%;
    letter-spacing: 0.2rem;
}
.button:hover{
    background-color: hsl(0, 0%, 100%);
    color: hsl(25, 97%, 53%);
}
.thank-card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    gap: 1rem;
}
.img-tk img{
    
}
#notaFinal{
    background-color: hsl(213, 19%, 18%);
    padding: 0.6rem;
    border-radius: 2rem;
    color: hsl(25, 97%, 53%);
    width: 50%;
}
#msgErro{
    color: red;
}
.hidden{
    display: none !important;
}