* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}

:root {
    --background-color: #03001C;
    --background-color2: #362370;
    --initial-color: black;
    --initial-font: "Roboto";
    --initial-font-size: 1em;
    --initial-weight: 400;
    --title-color: #5B8FB9;
    --label-color: #336d9c;
    --fonte-secundaria: #679194;
    --border-color: #8c6de7;
    --box-shadow: #8c6de7;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: var(--background-color);
    font-family: var(--initial-font);
    font-size: var(--initial-font-size);
    font-weight: var(--initial-weight);
}


/*----------------------------------------------------------------*/

.cadastro {
    width: 85%;
    height: 800px;
    background-color: var(--background-color);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    padding: .5em;
    border: 5px solid var(--border-color);
    box-shadow: inset 0 0 10px 1px var(--box-shadow), 0 0 10px 1px var(--box-shadow);
}

.cadastro__container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.cadastro__imagem {
    margin-top: 1em;
    width: 10em;
    height: 10em;
    align-self: center;
}

.cadastro__titulo-titulo {
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--title-color);
    text-shadow: 0 0 10px var(--border-color);
    padding: 1em 0 1em 0;
    font-size: 1.88em;
}

.cadastro__form {
    width: 100%;
    height: fit-content;
    /* background: white; */
    align-self: center;
    padding: 1em;
    display: flex;
    flex-direction: column;
}

.cadastro__label {
    font-weight: 500;
    color: var(--label-color);
    margin-bottom: 0.4em;
    font-size: 1.2em;
}

.cadastro__formulario {
    background: var(--background-color2);
    border: 2px solid var(--title-color);
    border-radius: 15px;
    padding-left: 1em;
    height: 40px;
    margin: 5px;
    color: var(--title-color);
    font-size: .95em;
    outline: var(--title-color);
    transition: .5s;
    z-index: 1000;
    display: flex;
    align-items: center;
    width: 95%;
}

.cadastro__formulario::placeholder {
    color: var(--fonte-secundaria);
}

.cadastro__formulario:focus {
    transition: .5s;
    box-shadow: 0 0 10px var(--title-color);
    z-index: 0;
}

.cadastro__formulario:hover {
    box-shadow: 0 0 10px 5px var(--border-color);
}

ul {
    list-style: none;
    width: 100%;
    /* background-color: #679194; */
    height: 100%;
}

li {
    margin-top: .4em;
    /* background-color: aliceblue; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

li::after {
    position: absolute;
    content: "";
    width: 0px;
    height: 50px;
    border: 2px solid var(--background-color);
    border-radius: 20px;
    box-shadow: 0 0 5px var(--box-shadow);
    opacity: 0;
    transition: .3s;
    z-index: 0;
}

li:hover::after {
    position: absolute;
    content: "";
    width: 68%;
    height: 50px;
    border: 2px solid #8c6de7;
    border-radius: 20px;
    box-shadow: 0 0 10px var(--box-shadow), inset 0 0 5px var(--box-shadow);
    opacity: 100;
    z-index: 0;
}

.btn__cadastro {
    width: 70%;
    align-self: center;
    margin-top: 1em;
    height: 40px;
    border: 2px solid var(--title-color);
    border-radius: 20px;
    background: var(--background-color);
    color: var(--title-color);
    font-weight: 700;
    box-shadow: inset 0 0 10px var(--title-color), 0 0 10px var(--title-color);
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.btn__cadastro:hover {
    box-shadow: 0 0 10px rgb(174, 0, 255);
    transition: .3s;
}

.btn__cadastro:active {
    opacity: 90%;
    transition: .3s;
}