@import url(https://fonts.googleapis.com/css?family=Exo:100,200,400);
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:700,400,300);

body {
	margin: 0;
	padding: 0;
	background: #fff;
	font-family: Arial;
	font-size: 12px;
	color: #fff;
	min-height: 100vh;
	position: relative;
}

body {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('/images/background_v1.png'); /* Ruta desde /public */
	background-size: cover;

	background-repeat: no-repeat;
	filter: blur(0.1px);
	z-index: 0;
}


.grad {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.65));
	z-index: 1;
	opacity: 0.7;
}

.container-login {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 2rem;
	box-sizing: border-box;
}

.login-wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 4rem;
	flex-wrap: wrap;
	max-width: 900px;
	width: 100%;
	background-color: #1d4b61b4;
	padding: 2rem;
	border-radius: 10px;
}

.header {
	flex: 1 1 300px;
	text-align: right;
	font-family: 'Exo', sans-serif;
	font-size: 35px;
	font-weight: 200;
	color: #fff;
}

.header span {
	color: #82d8df;
}

.login {
	flex: 1 1 300px;
	max-width: 400px;
	width: 100%;
}

.login input[type=email],
.login input[type=password] {
	width: 100%;
	height: 35px;
	background: transparent;
	border: 1px solid rgb(255, 255, 255);
	border-radius: 2px;
	color: #ffffff;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 4px;
	margin-bottom: 10px;
}

.login button.btn-login {
	width: 100%;
	height: 40px;
	background: #fff;
	border: 1px solid #fff;
	cursor: pointer;
	border-radius: 2px;
	color: #b3740f;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
}

.login input:focus,
.login button:focus {
	outline: none;
	border: 1px solid rgb(255, 255, 255);
}

@media (max-width: 768px) {
	.login-wrapper {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 1rem;
	}

	.container-login {
		align-items: center;
		justify-content: center;
		
		padding: 2rem 1rem;
	}

	.header {
		flex: none !important;   /* ✅ Quita el comportamiento de flex */
		width: auto;
		margin: 0;
		padding: 0.5rem 0;
		text-align: center;
	}
}
