:root{
     --colorPrimary:#B00A6C;
     --colorWhite:#fff;
     --bacgrounColorDisabled:#eaeaea;
     --bacgrounTextColorDisabled:#555;


}
* {
	margin: 0;
	padding: 0;
	font-family: "Poppins", sans-serif, monospace;
	box-sizing: border-box;
}
.container {
	width: 100%;
	height: 100vh;
	background-image: linear-gradient(rgba(0, 0, 50, 0.8),rgba(238, 0, 50, 0.8)),
		url(../images/login-background.png);
	background-position: center;
	background-size: cover;
	position: relative;
}

.form-box {
	width: 94%;
	max-width: 450px;
    border-radius: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: var(--colorWhite);
	padding: 20px 20px 70px;
	text-align: center;
}
.form-box h1 {
	font-size: 20px;
	margin-bottom: 30px;
	color:var(--colorPrimary);
	position: relative;
}
.logo-sistema {
    width: 100%;
    bottom: -10px;
}
.loader-login{
	width: 5%;
    bottom: -10px;
}
.form-box h1::after {
	content: "";
	width: 50px;
	height: 4px;
	border-radius: 3px;
	background: var(--colorPrimary);
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
}

.input-field {
	background: #eaeaea;
	margin: 15px 0;
	border-radius: 3px;
	display: flex;
	align-items: center;
	max-height: 65px;
	transition: max-height 0.5s;
	overflow: hidden;
}
input {
	width: 100%;
	background: transparent;
	border: 0;
	outline: 0;
	padding: 18px 15px;
}
.input-field i {
	margin-left: 15px;
	color: #999;
}
.recibir-ofertas-chk {
  font-family: system-ui, sans-serif;
  display: grid;
  grid-template-columns: 1em auto;
  gap: 0.5em;
  color: var(--colorPrimary);
  font-size: 13px;
  font-weight: 500;
}
form p {
	text-align: left;
	font-size: 13px;
}
form p a {
	text-decoration: none;
	color: var(--colorPrimary);
}
.btn-field {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.btn-field button {
	flex-basis: 50%;
	background: var(--colorPrimary);
	color: var(--colorWhite);
	height: 40px;
	border-radius: 20px;
	border: 0;
	outline: 0;
	cursor: pointer;
	transition: background 1s;
}
.input-group {
	height: 150px;
}
.btn-field button.disabled {
	background-color: var(--bacgrounColorDisabled);
	color: var(--bacgrounTextColorDisabled);
}
.togglePasswordEye{
    margin-left: -250px;
    cursor: pointer;
    color:var(--colorPrimary);
}