/* ------------------------------------------ estilos universales ------------------------------------------ */
:root {
	--colorPrincipal: #5990bd;
	--colorNegro: #111111;
	--colorBlanco: #ffffff;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

ul {
	list-style: none;
}

html {
	font-size: 62.5%;
}

body {
	font-size: 16px;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../../landing-3/images/imagenes_landing/FONDO.png);
}

/* ------------------------------------------ utilidades ------------------------------------------ */
.element-btn {
	padding: 1rem;
	border: none;
	border-radius: 1rem;
	background: #4fb4afd5;
	font-size: 1.5rem;
	color: var(--colorBlanco);
	max-width: 300px;
	width: 75%;
	align-self: center;
}

.titele__element {
	font-size: 3rem;
	font-weight: bold;
}

.logo-principal {
	width: 5rem;
}
/* ------------------------------------------ diseño personalizado ------------------------------------------ */

/* navegacion */
.contenedor__hero__nav {
	padding: 1rem;
	color: var(--colorBlanco);
}

.contenedor__nav {
	display: flex;
	width: 100%;
	justify-content: center;
}

/* seccion de login */
.contenedor__seccion {
	width: 100%;
	height: 100vh;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
	justify-items: center;
	align-items: center;
	justify-content: center;
}

.contenedor__login {
	width: 80%;
	padding: 3rem;
	display: flex;
	align-items: center;
	flex-direction: column;
	border-radius: 1rem;
	background-color: var(--colorBlanco);
	box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
}

.contenedor__login h3 {
	text-align: center;
	margin-bottom: 3rem;
	color: var(--colorNegro);
}

.inputs__login form {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	row-gap: 3rem;
}

.inputs__login {
	width: 100%;
}

.camera__user {
	background-color: gray;
	border-radius: 100%;
	width: 25rem;
	height: 25rem;
	overflow: hidden;
	position: relative;
}

.camera__user video,
canvas {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
/* reponsive login */
@media (min-width: 768px) {
	.contenedor__login {
		width: 70%;
	}
}

@media (min-width: 1024px) {
	.contenedor__login {
		width: auto;
		max-width: 84rem;
	}

	.camera__user {
		background-color: gray;
		border-radius: 100%;
		width: 40rem;
		height: 40rem;
		animation: 1s ease-out 0s 1;
	}

	.camera__user video,
	canvas {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}
}
/* ------------------------------------------ icon users ------------------------------------------ */
.contenedor__login__sesiones {
	margin-bottom: 4rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 6rem;
	width: 100%;
	overflow: auto;
	max-height: 24rem;
}

.sesion__item {
	cursor: pointer;
	width: 6rem;
	display: flex;
	text-align: center;
	flex-direction: column;
	align-items: center;
}

.item__sesion__img {
	background-color: rgb(229, 241, 241);
	border-radius: 100%;
}

.sesion__item p {
	font-size: 1.2rem;
}

.sesion__item h6 {
	font-size: 1.4rem;
}

.sesion__item__img {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.item__sesion__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

@media (min-width: 768px) {
	.contenedor__login__sesiones {
		flex-direction: row;
		flex-wrap: nowrap;
	}
}
body::-webkit-scrollbar {
	display: none;
}
.contenedor__login__sesiones::-webkit-scrollbar {
	width: 0.5rem !important;
}

.contenedor__login__sesiones::-webkit-scrollbar-thumb {
	background-color: var(--colorPrincipal) !important;
	border-radius: 1rem !important;
}
