.log-blog {
	align-self: flex-end;
	justify-self: flex-start;
	background: #202020;
	padding: 20px;
	border-radius: 15px;

	/* offset-x | offset-y | blur-radius | spread-radius | color */
	box-shadow: -5px 5px 12px 8px rgba(0, 0, 0, 0.4);

	animation: aparecerDesdeAbajo 0.75s ease-out;
}

.log-blog form {
	display: flex;
	flex-direction: column;
	max-height: 100px;
}

.log-blog form label {
	font-weight: 500;
}

.log-blog form input[type="password"] {
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
	background: #202020;
	padding: 5px;
	border: 3px solid #fff;
	border-radius: 10px;
	width: 230px;
	margin-top: 7px;
}

.log-blog form input[type="submit"] {
	font-weight: 600;
	color: rgba(255, 255, 255, 0.7);
	background: #202020;
	padding: 5px;
	border: 3px solid #fff;
	border-radius: 10px;
	margin: auto;
	margin-top: 12px;
	width: 100px;
	cursor: pointer;
}

.log-blog form input:focus-visible {
	outline-style: none;
}
