* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
}

h1 {
    font-size: 23px;
    color: #373737;
    font-weight: 500;
}

h3 {
    font-size: 15px;
    color: #858585;
    font-weight: 500;
}

p {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.cx-pai {
    background: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 397px;

    .cx-separador {
        padding: 15px 20px;

        .label-file {
            border: 2px dashed #780abd66;
            width: 100%;
            text-align: center;
            padding: 20px;
            border-radius: 6px;
            display: flex;
            flex-direction: column;
            margin: 20px 0px 9px 0px;
            justify-content: center;
            align-items: center;
            transition: all .2s;

            img {
                width: 65px;
            }

            .p-modifiq {
                font-weight: 400;
                color: #780abd;
                text-decoration: underline;
                cursor: pointer;
            }

            #pdf {
                display: none;
            }

            #file-name {
                border-radius: 5px;
                background-color: #efd5ff;
                font-size: 12px;
            }
        }
        
        .label-file:hover {
            background-color: #780abd0b;
        }

        .observacao-arquivo {
            display: flex;
            width: 100%;
            justify-content: space-between;
        }

        .observacao-arquivo p {
            font-size: 11px;
            color: #5b5b5b;
        }

        .submit {
            margin-top: 10px;
            border-radius: 9px;
            background-color: #780abd;
            width: 100%;
            color: #fff;
            padding: 11px;
            border: none;
            font-size: 15px;
            transition: all .2s;
        }
        
        .submit:hover {
            background-color: #62079b;
        }
    }

    .borda-bottom {
        border-bottom: 1px solid #cfcfcf;
    }
    
}