.form-login .info {
	/* background: linear-gradient(0deg, var(--color-3), var(--color-4)); */
	background: var(--color-3);
}

.form-login form {
	padding: 20px;
}

.form-login .header-title {
	text-align: center;
	color: #FFF;
	padding: 20px 20px 10px 20px;
}

.form-login .header-title h1 {
	font-size: 20px;
	margin-bottom: 8px;
	text-transform: uppercase;
	color: #fff;
}

.form-login {
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	max-width: 500px;
	width: 100%;
	margin: 20px auto 40px;
	overflow: hidden;
}

.form-login .img-wrap img {
	height: 100%;
	object-fit: cover;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	color: #FFF;
	font-weight: 500;
	font-size: 14px;
}

.required {
	color: #e74c3c;
}

.input-with-icon {
	position: relative;
	display: flex;
	align-items: center;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 12px 8px 12px 16px;
	background: #FFF;
	transition: border-color 0.3s ease;
}

.input-with-icon:focus-within {
	box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.input-with-icon svg {
	margin-right: 12px;
	color: #666;
	flex-shrink: 0;
}

.input-with-icon input {
	border: none;
	outline: none;
	flex: 1;
	font-size: 14px;
	color: #333;
	background: transparent;
	width: 100%;
}

.input-with-icon input::placeholder {
	color: #999;
}

.toggle-password-eye {
	cursor: pointer;
	margin-left: 8px;
	color: #666;
	transition: color 0.3s ease;
}

.error {
	color: #e74c3c;
	font-size: 13px;
	margin-top: 5px;
	display: block;
}

.forgot-password {
	text-align: right;
	margin-bottom: 20px;
}

.forgot-password a {
	color: var(--color-3);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

.submit-btn {
	width: 100%;
	background: #fff;
	color: #000;
	border: none;
	border-radius: 8px;
	padding: 14px 20px;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
	text-transform: uppercase;
}

.submit-btn:hover {
	background: var(--color-4);
	transform: translateY(-1px);
	color: #FFF;
}

.form-footer {
	text-align: center;
	color: #FFF;
	font-size: 14px;
	margin-top: 20px;
}

.form-footer a {
	/* color: var(--color-3); */
	color: #FFF;
	font-weight: 500;
	transition: color 0.3s ease;
	font-size: 16px;
}

.alert {
	padding: 12px 16px;
	border-radius: 8px;
	margin-bottom: 20px;
	font-size: 14px;
}

.alert-danger {
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
	color: #721c24;
}

.alert-success {
	background-color: #d4edda;
	border: 1px solid #c3e6cb;
	color: #155724;
}

.form-regeter.form-login {
	max-width: 600px;
}

.form-group .agree_checkbox {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

@media (max-width: 768px) {
	.form-login {
		grid-template-columns: repeat(1, 1fr);
	}

	.form-login .img-wrap {
		/* max-height: 250px; */
	}

	.form-login .img-wrap img {
		width: 100%;
		height: 100%;
		object-position: top;
	}
}

/* ===== NÚT GOOGLE ===== */
.btn-google {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	padding: 14px 20px;
	background: #fff;
	border: 1.5px solid #dadce0;
	border-radius: 50px;
	font-family: inherit;
	font-size: 15px;
	font-weight: 500;
	color: #3c4043;
	text-decoration: none;
	cursor: pointer;
	transition:
		box-shadow 0.2s ease,
		border-color 0.2s ease,
		background 0.18s ease,
		transform 0.15s ease;
	position: relative;
	overflow: hidden;
}

.btn-google::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #4285F420 0%, #EA433520 50%, #FBBC0420 100%);
	opacity: 0;
	transition: opacity 0.25s ease;
	border-radius: inherit;
}

.btn-google:hover {
	border-color: #4285F4;
	box-shadow:
		0 2px 8px rgba(66, 133, 244, .18),
		0 0 0 3px rgba(66, 133, 244, .10);
	transform: translateY(-1px);
}

.btn-google:hover::before {
	opacity: 1;
}

.btn-google:active {
	transform: translateY(0px) scale(0.985);
	box-shadow: 0 1px 3px rgba(66, 133, 244, .12);
}

.btn-google .google-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}

.btn-google .btn-text {
	position: relative;
}

/* ===== DIVIDER ===== */
.divider {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 24px 0;
}

.divider::before,
.divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: #e8eaed;
}

.divider span {
	font-size: 12px;
	color: #9aa0a6;
}