body {
    background-color: #C6BFA5;
    font-family: Arial;
}

.row {
    display: flex;
    flex-direction: row;
}

.container {
    width: 100%;
    max-width: 1000px;

    margin: 50px auto;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.form {
    display: flex;
    justify-content: center;
    align-items: center;
}

input{
background-color:#777777;
}

.form input,
.form button,
.form .upload {
    height: 28px;
    border-radius: 2px;
    border: 1px solid black;
	
	color:#FFFFFF;

    box-sizing: border-box;
    padding: 5px 10px;

    font-size: 14px;
}

.form button {
    background-color: black;
    color: white;

    cursor: pointer;
}

.form input[type="file"] {
    display: none;
}

.form .upload {
    cursor: pointer;
}

.download {
    margin-top: 30px;
    line-height: 1.4;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.del {
    width: 100%;
    justify-content: space-between;
    margin-bottom: 5px;
}

.download a {
    color: black;
}

.download i {
    margin-right: 8px;
}