﻿/* BOX SIZING */
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* MAIN */
body {
    font-family: "Ubuntu", Arial, Helvetica, sans-serif;
    background-color: #7780E4;
    margin: 0;
    padding: 0;
}


#container {
    min-height: 100vh !important;
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
}

.conteudo {
    padding: 35px 20px 10px 20px;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border-radius: 7px;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    font-weight: 300;
    text-align: center;
}


#container h1 {
    color: #7780E4;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
    overflow-wrap: break-word;
    width: 100%;
}

    #container h1::after {
        padding-top: 15px;
        content: "";
        display: block;
        border-bottom: 1px solid #cbcbcb;
        width: 30px;
        margin: 0 auto;
    }



.conteudo ul {
    margin-left: 0;
    padding-left: 20px;
    text-align: left;
}

    .conteudo ul li {
        margin: 5px 0;
        font-size: 15px;
    }

.conteudo p {
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
}

.icon {
    display: block;
    position: relative;
    top: 22.5px;
    width: 45px;
    height: 45px;
    border-radius: 999px;
    background-color: #31393C;
    line-height: 56px;
    text-align: center;
    vertical-align: middle;
    color: #FFFFFF;
    margin: 0 auto;
}
