
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    //height: 100vh;
    height: 100%;
    background-color: #110f05;
    margin: 0;
}
.container {
    background-color: #000;
	background: url(imgs/bg1.png) black top center no-repeat;
	background-attachment: fixed;
	margin-top:50px;
	margin-bottom:50px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(55, 55, 55, 0.6);
    max-width: 800px;
    width: 100%;
}
.files {
    background-color: #000;
	background: url(imgs/bg4.png) black top center no-repeat;
	background-attachment: fixed;
	margin-top:50px;
	margin-bottom:50px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(55, 55, 55, 0.6);
    max-width: 800px;
    //width: 100%;
    //min-height: 400px;
	width: 100vw;// 100% view width
}
h1, h3 {
    color: #fff;
}




.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

input, select,input[type=text]:active, input[type=number]:active {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    background-color: #bb1700;
    color: #fff;
}


        .checkbox-container {
            display: inline-flex;
            align-items: center;
        }
        .checkbox-container input[type="checkbox"] {
            margin-left: 5px;
        }


button {
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

#responseTextView {
    margin-top: 20px;
    padding: 10px;
    background-color: #e9ecef;
    border-radius: 5px;
	font-size:.65em;
}

progress {
    width: 100%;
    height: 20px;
    margin-top: 10px;
}
