/* :root {
		--rojoFondo: #A8123E;
		--gris: #7e7e7b;
		--grisFondo: #f1f1f1;
		--amarillofondo: #fffded;
		--grisFondoFooter: #5f1b2d;
		--rojoTxt: #C62038;
} */

.login-box {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 400px;
	padding: 40px;
	transform: translate(-50%, -50%);
	/* background: rgba(255, 255, 255, 0.987); */
	/* background: linear-gradient(90deg, transparent, #ffffff) padding-box, linear-gradient(120deg, transparent 25%, #1cb0ff, #40ff99) border-box; */
	background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(120deg, transparent 25%, #c62038, #a8123e) border-box;
	box-sizing: border-box;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.6);
	color: #212121;
	border: 5px solid transparent;
	border-radius: 10px;

	/* padding: 32px 24px;
	font-size: 14px;
	display: flex;
	flex-direction: column;
	gap: 20px;	
	border-radius: 16px; */
}

.login-box .user-box {
	position: relative;
}

.login-box .user-box input {
	width: 100%;
	padding: 10px 0;
	font-size: 16px;
	/* color: #fff; */
	margin-bottom: 30px;
	border: none;
	border-bottom: 1px solid #c62038;
	outline: none;
	background: transparent;
}

.login-box .user-box label {
	position: absolute;
	top: 0;
	left: 0;
	padding: 10px 0;
	font-size: 16px;
	/* color: #fff; */
	color: #7e7e7b;
	pointer-events: none;
	transition: 0.5s;
}

.login-box .user-box input:focus ~ label,
.login-box .user-box input:valid ~ label {
	top: -20px;
	left: 0;
	color: #bdb8b8;
	font-size: 12px;
}

/* button {
	border-radius: 5px;
	padding: 6px;
	background: #ffffff;
	color: #212121;
	border: 1px solid #414141;
}

button:hover {
	background: #a8123e;
	color: #ffffff;
	cursor: pointer;
}
button span {
	position: absolute;
	display: block;
}
button span:nth-child(1) {
	bottom: 2px;
	left: -100%;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, #a8123e);
	animation: btn-anim1 2s linear infinite;
} */

.login-box form a {
	position: relative;
	display: inline-block;
	padding: 10px 20px;
	/* color: #ffffff; */
	color: #5f1b2d;
	font-size: 16px;
	text-decoration: none;
	text-transform: uppercase;
	overflow: hidden;
	transition: 0.5s;
	margin-top: 40px;
	letter-spacing: 4px;
}

.login-box a:hover {
	background: #5f1b2d;
	color: #fff;
	border-radius: 5px;
	box-shadow: 0 0 1px #c62038, 0 0 1px #c62038, 0 0 1px #c62038, 0 0 1px #c62038;
}

.login-box a span {
	position: absolute;
	display: block;
}

@keyframes btn-anim1 {
	0% {
		left: -100%;
	}

	50%,
	100% {
		left: 100%;
	}
}

.login-box a span:nth-child(1) {
	bottom: 2px;
	left: -100%;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, #a8123e);
	animation: btn-anim1 2s linear infinite;
}

/* From Uiverse.io by dhanushrs1 */
.button {
	--color: #5f1b2d;
	padding: 0.8em 2em;
	background-color: transparent;
	border-radius: 0.6em;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	font-weight: 700;
	font-size: 17px;
	border: 2px solid var(--color);
	font-family: inherit;
	text-transform: uppercase;
	color: #5f1b2d;
	z-index: 1;
	display: inline-block;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.button::before,
.button::after {
	content: '';
	display: block;
	width: 50px;
	height: 50px;
	transform: translate(-50%, -50%);
	position: absolute;
	border-radius: 50%;
	z-index: -1;
	background-color: var(--color);
	transition: 0.7s ease-in-out;
}

.button::before {
	top: -1em;
	left: -1em;
}

.button::after {
	left: calc(100% + 1em);
	top: calc(100% + 1em);
}

.button:hover::before,
.button:hover::after {
	height: 410px;
	width: 410px;
}

.button:hover {
	background: linear-gradient(135deg, #a8123e, #212121);
	color: #ffffff;
	border-color: #212121;
	box-shadow: 0 6px 15px rgba(198, 32, 56, 0.4), 0 8px 24px rgba(168, 18, 62, 0.2);
	transform: translateY(-3px);
}

.button:active {
	transform: scale(0.97);
	filter: brightness(0.85);
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
	background: linear-gradient(135deg, #a8123e, #5f1b2d);
}

.button:focus {
	outline: none;
	border-color: #7289da;
	box-shadow: 0 0 0 4px rgba(46, 66, 255, 0.3);
}
