/* TÍTULO EN PANTALLA MÓVIL */
.title {
	font-family: Orbitron, sans-serif;
}

.line-1 {
	color: #445275;
 	font-size: 20px;
 	font-family: 'Urbanist', sans-serif;
}

.line-2 {
	color: #F54D3D;
	font-size: 16px;
	font-family: 'Urbanist', sans-serif;
}
/* FIN TÍTULO EN PANTALLA MÓVIL */



/* TÍTULO EN PANTALLA ORDENADOR */
@media screen and (min-width: 1024px) {

	.title{
 		font-family: Orbitron, sans-serif;
 	}

	.line-1 {
		color: #445275;
 		font-size: 40px;
 		font-family: 'Urbanist', sans-serif;
	}

	.line-2 {
		color: #F54D3D;
		font-size: 20px;
		font-family: 'Urbanist', sans-serif;
	}

}
/* FIN TÍTULO EN PANTALLA ORDENADOR */

/* Inicio countdown */
.countdown {
	justify-content: center;
	align-items: center;
	font-size: 0.8rem;
	margin-bottom: 1rem;
}

@media screen and (min-width: 1024px) {
	.countdown{
		justify-content: flex-start;
	}
	
}

.countdown-item {
	padding:  0.75rem;
	align-items: center;
	position: relative;
}

.countdown-item:not(:last-of-type):before {
	position: absolute;
	right: 0;
	content: "";
	display: block;
	width: 1px;
	height: 50%;
	background: #fff;
	opacity: .5;
}

.countdown-number {
	font-size: 1.75em;
	font-weight: bold;
	margin-right: .25rem;
	color: #445275; //Color de los números de la cuenta atrás
}

.countdown-letter {
	opacity: .5;
}

/* Fin Countdown */

/* Formulario */

.form-container {
	height: 2.5rem;
	margin-bottom: 2rem;
}

.form {
	display: inline-flex;
	margin-bottom: .5rem;
}

.input {
	line-height: 2.5rem;
	width: 15rem;
	background: none;
	border: 1px solid rgba(255,255,255,.4);
	padding: 0 .5rem;
	border-radius: .25rem 0 0 .25rem;
}

.input::placeholder {
	color: rgba(255,255,255,.5);
}

.inputadmin {
	line-height: 1.5rem;
	width: 15rem;
	background: none;
	border: 1px solid rgba(255,255,255,.4);
	padding: 0 .5rem;
	border-radius: .25rem 0 0 .25rem;
}

.inputadmin::placeholder {
	color: rgba(255,255,255,.5);
}

.bloque {
	line-height: 1.5rem;
	width: 15rem;
	background: none;
	padding: 0 .5rem;
	color: rgba(255,255,255,.5);
}

/*.button {
	padding: 0 1rem;
	border-radius: 0 .25rem .25rem 0;
	border: none;
}*/

.form-hint {
	font-size: .7rem;
	margin: 0 0 1rem ;
}