body{
    margin: 20px 0;
    font-family: system-ui;
    font-size: 30px;
    background-color: #30036C;
    color: white;
}

body.sem-scroll {
    overflow: hidden;
}

header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 45px;
    background-color: #8A38F5;;
    width: 75%;
    margin: 30px auto;
    border-radius: 10px;
}

.formulario{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

form{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.entrada{
    margin: 10px;
    padding: 20px;
    background-color:#8A38F5;
    opacity: 0.8;
    border-radius: 10px;
    width: 700px;
    display: flex;
    flex-direction: column;
}

label{
    font-size: 38px;
    margin-bottom: 10px;
    display: flex;   
}

input{
    border: none;
    padding: 16px;
    font-size: 30px;
    border-radius: 10px;
}

input[type="checkbox"]{
    transform: scale(2);
    cursor: pointer;
}

.entrada p{
    font-size: 38px;
    font-weight: 10px;
}

.marque{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.linguagens{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    font-size: 30px;
}

button{
    padding: 24px;
    border: none;
    font-size: 28px;
    margin: 24px;
    border-radius: 10px;
    cursor: pointer;
    background-color: #6e2fc1;
    color: white;
}

.sucesso {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    color: white;
    text-align: center;
    flex-direction: column;
    padding: 30px;
    visibility: hidden;
    opacity: 0;
}

.sucesso.ativo{
    visibility: visible;
    opacity: 1;
}