@import url('https://fonts.googleapis.com/css?family=Poppins');

html,
body {
	background-image: url('../imagenes/background_inventa-Xpress_01.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	height: 100%;
	font-family: 'Poppins', sans-serif;
	margin: 0;
}

.main-container {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	padding: 15px;
}

.card-container {
	width: 100%;
	max-width: 385px;
	position: relative;
}

.card {
	background-color: rgba(0, 0, 0, 0.6) !important;
	border-radius: 10px;
	box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
	border: none;
}

.card-header {
	border-bottom: none;
	padding: 1.5rem 2rem;
	background-color: transparent;
}

.social_icon {
	position: absolute;
	right: 20px;
	top: -45px;
}

.ctn-viewlogo {
	display: flex;
	justify-content: center;
}

.logoview {
	width: 227px;
	height: auto;
}

.card-body {
	padding: 0.5rem 2rem;
}

.input-group-text {
	width: 50px;
	background-color: #ff5a00;
	color: black !important;
	border: 0 !important;
	justify-content: center;
}

.form-control:focus {
	box-shadow: none;
	outline: none;
	border-color: #ff5a00;
}

.btn-login,
.login_btn {
	background-color: #ff5a00;
	color: black;
	font-weight: 600;
	border: none;
	padding: 10px 20px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.btn-login:hover,
.login_btn:hover {
	background-color: white;
	color: #ff5a00;
	transform: translateY(-2px);
}

.btn-login:disabled,
.login_btn:disabled {
	background-color: #cccccc;
	color: #666;
	cursor: not-allowed;
	transform: none;
}

.card-footer {
	border-top: none;
	background-color: transparent;
	color: #fff;
	font-size: 0.9rem;
	text-align: center;
	padding-top: 1rem;
}

.links {
	color: white;
}

.links a {
	margin-left: 4px;
}

.info-error {
	position: absolute;
	top: -60px;
	left: 0;
	right: 0;
	padding: 15px;
	border-radius: 0.5rem;
	text-align: center;
	margin-bottom: 10px;
	z-index: 100;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	background-color: #f44336;
	color: white;
	display: none;
	font-weight: 500;
}

.loader {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: url('../imagenes/loader.svg') 50% 50% no-repeat rgb(249, 249, 249);
	background-position: center;
	background-size: 250px;
	opacity: .8;
}