body {
    font-family: 'Work Sans', sans-serif;
}


/* Full page background image */
.bg-image {
	background-image: url('https://klinapp.com/assets/img/auth-bg.jpg'); /* Replace with your image path */
	background-size: cover;
	background-position: center;
	height: 100vh;
}

/* Left side (image side) */
.left-panel {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.6); /* Slight overlay for contrast */
}

/* Right side (form side) */
.right-panel {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2rem;
}

/* Form styling */
.login-form {
	max-width: 400px;
	width: 100%;
}

.login-title {
	font-weight: bold;
	margin-bottom: 1.5rem;
}

/* Link styles */
.register-link, .forgot-password {
	color: #0056b3;
	text-align: center;
}
.register-link:hover, .forgot-password:hover {
	text-decoration: underline;
}

/* Media Query para Mobile - 50vh en pantallas menores a 768px */
@media (max-width: 767px) {
    .bg-image {
        height: 50vh;
    }
}
