html {
    background-color: #f0f0f0;
}
#container-data {
    margin-top: 20px;
    width: 100%;
    max-width: 600px;
    margin: 0px auto;
}

form {
    text-align: center;
}

textarea {
    resize: vertical;
}

input, textarea {
    display: block;
    width: 100%;
}

#label-arquivo {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    border-radius: 20px;
    background: rgb(255, 52, 52); /* linear-gradient(to right, #fff, #f0f0f0); */
    padding: 10px;
    margin: 20px auto;
    cursor: pointer;
}

#label-arquivo:hover {
    background: rgb(167, 34, 34);
}

input[type="file"] {
    width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

#tipo-arquivo {
    margin-top: 20px;
    width: 180px;
    padding: 10px;
    background-color: #f0f0f0;
}

#botao-submit {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    border-radius: 20px;
    background: rgba(51, 150, 31, 0.63); /* linear-gradient(to right, #fff, #f0f0f0); */
    padding: 10px;
    margin: 0px auto;
    margin-bottom: 0;
    border: 0;
    cursor: pointer;
}

#botao-submit:hover {
    background: rgba(31, 90, 19, 0.63);
}