body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f4f4f9;
}

.container {
	max-width: 600px;
	margin: 20px auto;
	padding: 20px;
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
	text-align: center;
	color: #333333;
}

label {
	display: block;
	margin-top: 15px;
	font-weight: bold;
}

table{
	width:100%;
	margin-bottom:10px;
}

.descripcion{
	border-top:1px solid #ccc;
	padding-top:10px;
}

input, select, textarea {
	width: 100%;
	padding: 10px;
	margin-top: 5px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	box-sizing: border-box;
}
select{
	height:39px;
}

button {
	margin-top: 20px;
	width: 100%;
	padding: 10px;
	background-color: #007bff;
	color: white;
	font-size: 16px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

button:hover {
	background-color: #0056b3;
}

.optional {
	font-size: 12px;
	color: #888888;
}

.error {
	color: red;
	font-size: 12px;
}
#logo{
	text-align:center;
	margin-bottom:20px;
}

.mensaje{
	text-align:center;
	margin-top:20px;
	background: #f4f4f9;
	border-radius:5px;
	padding:10px;
	margin-bottom:20px;
	font-size:0.8em;
}

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

#preloader .spinner {
	border: 4px solid rgba(0, 0, 0, 0.1);
	border-top: 4px solid #007bff;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	animation: spin 1s linear infinite;
	position:absolute;
	top:50%;
	left:50%;
	margin-left:-20px;
	margin-top:-20px;
}

.input-info{
	font-size:10px;
	color: #777;
	margin-top:5px;
}

.form-checkbox{
	display:flex;
	align-items: center;
	margin-top: 10px;
}
.form-checkbox input[type="checkbox"]{
	width: auto;
	height: auto;
}
.form-checkbox label{
	margin-left:10px;
	margin-top: 4px;
}

.dropazing{
	margin-top: 5px;
}
.dropazing-files{
	font-size:0.9em;
	margin-bottom: 5px;
}
.dropazing-list{
	margin-bottom: 5px;
}
.dropazing-list .progress-bar:last-child{
	margin-bottom: 0px;
}
.dropazing-list .file-description{
	font-size:0.7em;
}
.dropazing-button{
	display: none;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}


#platformInfo{
	font-size: 14px;
	color: #636363;
	margin-top: 5px;
	line-height: 18px;
}