@import url('https://fonts.googleapis.com/css2?family=Hind:wght@600&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/** ROOT VARIABLES **/
:root {
	--color-primary: #7380ec;
	--color-danger: #ff7782;
	--color-success: #41f1b6;
	--color-warning: #ffbb55;
	--color-white: #fff;
	--color-info-dark: #7d8da1;
	--color-info-light: #dce1eb;
	--color-dark: #363949;
	--color-light: rgba(132,139,200,0.18);
	--color-primary-variant: #111e88;
	--color-dark-variant: #677483;
	--color-background: #f6f6f9;

	--card-border-radius: 3rem;
	--border-radius-1: 0.4rem;
	--border-radius-2: 0.8rem;
	--border-radius-3: 1.2rem;

	--card-padding: 1.8rem;
	--padding-1: 1.2rem;

	--box-shadow: 0 2rem 3rem var(--color-light);
}

html, body {
	margin: 0;
}

* {
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
	user-select: none;
}

h1 {
	font-size: 36px;
	font-weight: 600;
}

h3 {
	text-align: center;
	font-weight: 600;
	margin: 10px 0;
}

p {
	color: #777;
	font-size: 14px;
	font-weight: 300;
	line-height: 22px;
	padding: 10px;
}

.header {
	min-height: 100svh;
	/* width: 100vw; */
	background-image: linear-gradient(rgba(4, 90, 30, 0.5), rgba(4, 9, 30, 0.5)), url(../images/aves-04.jpeg);
	background-position: center;
	background-size: cover;
	position: relative;
}

nav {
	display: flex;
	padding: 8px 6%;
	justify-content: space-between;
	align-items: center;
}

nav img {
	width: 200px;
}

.nav-links {
	flex: 1;
	text-align: right;
}

.nav-links ul li {
	list-style: none;
	display: inline-block;
	padding: 8px 12px;
	position: relative;
}

.nav-links ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
}

.nav-links ul li::after {
	content: '';
	width: 0%;
	height: 1px;
	/*    background: #f44336; */
	background: #20d2e9;
	display: block;
	margin: auto;
	transition: 0.5s;
}

.nav-links ul li:hover::after {
	width: 100%;
}

nav .fa {
	display: none;
}

.text-box {
	width: 90%;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -25%);
	text-align: center;
}

.text-box h1 {
	font-size: 60px;
}

.text-box p {
	margin: 10px 0 40px;
	font-size: 14px;
	font-weight: 400;
	color: #fff;
}

.hero-btn {
	display: inline-block;
	text-decoration: none;
	color: #fff;
	border: 1px solid #fff;
	padding: 12px 34px;
	font-size: 13px;
	background: transparent;
	position: relative;
	cursor: pointer;
}

.hero-btn:hover {
	border: 1px solid rgba(26, 100, 180, 0.9);
	background: rgba(26, 170, 180, 0.5);
	transition: 1s;
}

/*-------- somos --------*/

.somos .unit span {
	padding: 0.5rem;
	color: #20d2e9;
	font-size: 3rem;
}

.somos {
	display: inline-block;
	margin: 0;
	padding: 0;
	text-align: center;
}

.login {
	text-align: center;
	padding: 0;
	position: absolute;
	top: 0;
	right: 5%;
	transform: translateY(10%);
}
.center {
	width: 300px;
	position: relative;
	padding: 0 20px;
	align-items: center;
	background: white;
	border-radius: 10px;
	box-shadow: var(--box-shadow);
	text-align: left;
}
.space {
	padding: 20px 20px 0 0;
	font-size: 12px;
}

.term {
	padding: 15px;
	text-align: center;
	font-size: 12px;
	color: red;
	cursor: pointer;
}

.title01 {
	display: flex;
	color: var(--color-info-dark);
	gap: 1rem;
	align-items: center;
	position: relative;
	height: 3.7rem;
}
.clave .title01 h1 {
	font-size: 16px;
	font-weight: 600;
}

.center .title01 {
	background: var(--color-light);
	color: var(--color-primary);
	margin-left: 0;
	border-radius: 0.5rem .5rem 0 0 ;
}
.center .title0 span {
	color: var(--color-primary);
	margin-left: calc(1rem - 3px);
}
.clave .title01:before {
	content: "";
	width: 6px;
	height: 100%;
	background: var(--color-primary);
}
.clave {
	top: 15px;
	left: 30px;
	width: 300px;
	padding-bottom: 20px;
}
.center h3 {
	text-align: left;
	font-size: 18px;
}

.center form {
	padding: 0;
}

form .txt_field {
	position: relative;
	border-bottom: 1px solid #adadad;
	margin: 30px 0;
}
.txt_field input {
	width: 97%;
	padding: 0 5px;
	height: 40px;
	font-size: 12px;
	border: none;
	background: none;
	outline: none;
}
.txt_field label {
	position: absolute;
	top: 50%;
	left: 5px;
	color: #adadad;
	transform: translateY(-65%);
	font-size: 14px;
	pointer-events: none;
	transition: 0.5s;
}
.txt_field span::before {
	content: '';
	position: absolute;
	top: 40px;
	left: 0;
	width: 0%;
	height: 1px;
	background: #2691d9;
	transition: 0.5s;
}
.txt_field input:focus ~ label,
.txt_field input:valid ~ label {
	top: -5px;
	color: #2691d9;
}
.txt_field input:focus ~ span::before,
.txt_field input:valid ~ span::before {
	width: 100%;
}
.pass {
	margin: -5px 0 20px 5px;
	color: #a6a6a6;
	cursor: pointer;
	font-size: 12px;
}
.pass:hover {
	text-decoration: none;
	color: #2691d9;
}
input[type="submit"] {
	width: 100%;
	height: 40px;
	border: 1px solid;
	background: #6b6a6a;
	border-radius: 25px;
	font-size: 12px;
	font-weight: 400;
	color: #e9f4fb;
	cursor: pointer;
	outline: none;
}
input[type="submit"]:hover {
	border-color: var(--color-info-dark);
	background: #c91b0e;
	transition: .5s;
}
.signup_link {
	margin: 30px 0;
	text-align: center;
	font-size: 12px;
	color: #666666;
}
.signup_link a {
	color: #2691d9;
	text-decoration: none;
}
.signup_link a:hover {
	text-decoration: underline;
}

/*  Footer  */

.footer {
	width: 100%;
	text-align: center;
	background: #000;
	color: #fff;
	padding-top: 10px;
	padding-bottom: 0;
	position: absolute;
	top: 100%;
	transform: translateY(-100%);
}

.footer h4 {
	margin-bottom: 0px;
	margin-top: 0px;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 12px;
}

.footer p {
	font-size: 11px;
	font-weight: 300;
	letter-spacing: 0.6px;
}

.icons .fa {
	color: #f44336;
	margin: 13px;
	cursor: pointer;
	padding: 8px 0;
}

.fa-heart-o {
	color: #f44336;
}

/**  MEDIA QUERIES  MOBILE  **/

@media screen and (max-width:768px) {
	.login {
		top: 100px;
		left: 50%;
		transform: translate(-170px, 0%);
	}
}

@media(max-width: 700px) {
	.text-box h1 {
		font-size: 20px;
	}

}

@media (max-width: 480px) {
	h1 {
		font-size: 20px;
	}

	p {
		font-size: 12px;
	}
}
