/*--parametros generales del cuerpo de imagenes--*/

body {
	background-color: rgb(27, 27, 27);

}
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}


.FirstParagraph{
	margin-top: 50px;
	text-align: justify;
	font-size: 1.2rem;
	width: 55%;
	color: white;
	animation: slideInLeft 1s ease-out forwards;
}


.main {
	margin-top: 150px;
	height: 100%;
	width: 100%;	
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	
}

.formulario {
	animation: slideInRight 1.2s ease-out forwards;
	margin-top: 100px;
	width: 40%;
	color: white;
}

.label1, input, textarea {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInLeft 1s ease-out forwards;
}




.nav-brandingblack 
{
	color: white;
}




.label1, input, textarea {
	color: white;
	margin-left: 5%;
	text-align: center;
	font-size: 15px;
	width: 80%;
	line-height: 40px;
	margin-top: 20px;
}
.status {
	color: red;
	text-align: center;
	font-size: 15px;
}
.submit {
	width: 80%;
	margin-left: 10%;
	cursor: pointer;
	margin-top: 20px;
	height: 40px;
	border: none;
	background-color: #f01f50;
	color: white;
	transition: .6 ease-in-out;
	opacity: 0;
    transform: translateY(20px);
    animation: slideInRight 1s ease-out forwards;
    animation-delay: 1.7s;
	
}

#uploading{
	color: green;
	margin-top: 20px;
	width: 50%;
	margin-left: 30%;
}
.submit:hover {
	background: rgb(255, 255, 255);
	color: black;
	transition: .3s ease-in-out;
	border: solid 1px black;
}
.file {
	margin-left: 10%;
	width: 80%;
	text-align: center;
}
.upload-files{
	width: 80%;
	margin-left: 10%;
	text-align: center;
}

.input-file {
	width: 80%;
	margin-left: 10%;

	text-align: center;

}

.send-button{
	margin-left: 10%;
	width: 80%;
	align-items: center;
	align-self: center;

	text-align: center;
}
/*--tablet responsive--*/
progress {
	margin-left: 10%;
	margin-top: 20px;
	background-color: #f3f3f3;
	border: 0;
	height: 18px;
	width: 80%;
	border-radius: 9px;
  }
progress[value]::-webkit-progress-bar {
	background-color: #eee;
	border-radius: 2px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
  }

footer {
	margin-top: 150px;
	height: 50px;
}

  footer hr {
		
	width: 90%;
	margin-left: 5%;
	color: white;
}

footer p {
	font-size: 12px;

	text-align: center;
	color: white;
}

/*--mobile responsive--*/
@media only screen and (max-width: 900px) {


	.main {
		margin-top: 150px;
		height: 100%;
		width: 100%;	
		display: flex;
		justify-content: center;
		flex-direction: column;
		align-items: center;
	}

	.formulario {
		width: 90%;
	}


}