@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;600&display=swap');
*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-light-50: #f8fafc;
    --color-dark-100: #797984;
    --color-dark-900: #000;

    --color-purple-50: #6139a5;
    --color-purple-100: #781dcd;
    --color-purple-200: #c162d9;

    --color-gradient: linear-gradient(90deg, var(--color-purple-50), var(--color-purple-100, var(--color-purple-200)))

}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: rgb(255, 255, 255);
}

#container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    background: white;
}

#forma_geral {
    background-color: blueviolet;
    padding: 180px 40px;
    border-radius: 8px;
    box-shadow: 10px 10px 16px rgba(0, 0, 0, 0.336);
    align-items: center;
    gap: 30px;
    margin-top: -100px;
    color: white;
}

.nome h1{
    font-size: 35px;
    margin-top: -120px;
}

#opcoes_selecionaveis {
    margin-top: 70px;
    font-size: 25px;
    text-align: left;
}

#opcoes_selecionaveis p {
    margin-bottom: 40px;
}

#opcoes_selecionaveis a {
    text-decoration: none;
    color: white;
}

#forma_cadastrar {
    align-items: center;
    text-align: center;
    margin-top: -120px;
    font-size: 30px;
    color: rgb(255, 255, 255);
}

#forma_cadastrar h3::before{
    position: absolute;
    content: '';
    width: 125px;
    background-color: rgb(255, 255, 255);
    height: 3px;
    bottom: 10px;
    border-radius: 3px;
    align-items: center;
    top: 770px;
}

#icon_moon_sun {
    cursor: pointer;
    float: right;
    margin-top: -140px;
    font-size: 20px;
}

.dark#container {
    color: rgb(255, 255, 255);
    background-color: #0c0c0c;
    transition: background 0.5s ease-in-out;
}

.dark#container:hover {
    box-shadow: inset 30px #0c0c0c;
}
