body {
	width: 100%;
	min-height: 100vh;
	margin: 0;
	font-family: 'Open Sans', Arial, sans-serif;
	background: linear-gradient(180deg, #f6f9ff 0%, #e2e9ff 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.login {
	width: 360px;
	background: #ffffff;
	border-radius: 18px;
	padding: 40px 36px 32px;
	box-shadow: 0 24px 60px rgba(36, 74, 148, 0.15);
	text-align: center;
}

.brand {
	display: flex;
	align-items: center;
	justify-content: center;
}

.brand-name {
	margin-top: 0;
	font-size: 15px;
	font-weight: 600;
	color: #274080;
	letter-spacing: 0.4px;
}

form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

input {
	width: 100%;
	margin: 0;
	background: #f4f7ff;
	border: 1px solid #d4dcf5;
	outline: none;
	padding: 12px 14px;
	font-size: 14px;
	color: #1f2a44;
	border-radius: 10px;
	box-shadow: inset 0 1px 3px rgba(33, 68, 128, 0.08);
	transition: border-color .3s ease, box-shadow .3s ease;
}

input:focus {
	border-color: #4a7dff;
	box-shadow: 0 0 0 4px rgba(74, 125, 255, 0.18);
}

input::placeholder {
	color: #7b86a6;
}

.btn {
	display: inline-block;
	padding: 12px 18px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.5px;
	color: #ffffff;
	text-align: center;
	border: none;
	border-radius: 999px;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.btn-primary {
	background: linear-gradient(135deg, #3366ff 0%, #1d4ed8 100%);
	box-shadow: 0 12px 24px rgba(51, 102, 255, 0.22);
}

.btn-primary:hover,
.btn-primary:focus {
	filter: brightness(1.05);
	transform: translateY(-1px);
	box-shadow: 0 16px 28px rgba(51, 102, 255, 0.26);
}

.btn-block {
	width: 100%;
}

.btn-large {
	padding: 14px 18px;
}

@media (max-width: 420px) {
	.login {
		width: 100%;
		padding: 32px 24px 28px;
	}

	.brand-image {
		width: 220px;
	}
}
