﻿body, html {
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
}

.login-header {
	background: linear-gradient(to right, #2b4b85, #f52026);
	padding: 12px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: white;
}
.left-group {
	display: flex;
	align-items: center;
	gap: 15px;
}

.logo {
	height: 65px;
	width: auto;
}

.title-block h1 {
	font-size: 30px;
	margin: 0;
	line-height: 1.2;
}

.title-block p {
	font-size: 20px;
	margin: 0;
	line-height: 1.2;
}

.home-icon {
	color: white;
	font-size: 24px;
}

.login-main {
	display: flex;
	justify-content: center;
	align-items: center;
	height: calc(100vh - 100px);
	background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
}

.login-box {
	background-color: #fff;
	padding: 30px 25px;
	border-radius: 12px;
	box-shadow: 0px 8px 20px rgba(0,0,0,0.1);
	max-width: 420px;
	width: 100%;
	text-align: center;
}

	.login-box h2 {
		margin-bottom: 25px;
		font-weight: 600;
		color: #2b4b85;
	}

.form-group {
	margin-bottom: 20px;
	text-align: center;
}

.form-control {
	border-radius: 8px;
	height: 44px;
	padding: 10px 15px;
	font-size: 15px;
	border: 1px solid #ccc;
	width: 90%;
}

	.form-control:focus {
		border-color: #2b4b85;
		outline: none;
		box-shadow: 0 0 3px rgba(43, 75, 133, 0.3);
	}

.btn-block {
	width: 100%;
	padding: 12px;
	font-weight: bold;
	font-size: 16px;
	border-radius: 8px;
	background: #f52026;
	border: none;
	color: white;
	transition: background 0.3s ease;
}

	.btn-block:hover {
		background: #d4111c;
	}

.captcha-group {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}

.captcha-img {
	height: 40px;
	width: 130px;
	border: 1px solid #ccc;
	border-radius: 6px;
}

.btn-refresh {
	background: #2b4b85;
	color: white;
	height: 40px;
	width: 40px;
	border: none;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media screen and (max-width: 768px) {
	.login-header {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}

		.login-header .title-block {
			margin-top: 10px;
		}

	.captcha-group {
		flex-direction: column;
		align-items: flex-start;
	}

	.login-box {
		padding: 20px;
	}
}
