/* Ohja Login Page Styles - Modern, Clean, Responsive */
body {
	background: linear-gradient(120deg, #f0f4f8 0%, #e0e7ef 100%);
	font-family: 'Segoe UI', Arial, sans-serif;
	margin: 0;
	padding: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

h1 {
	color: #222;
	margin-bottom: 1.5rem;
	font-size: 2.2rem;
	letter-spacing: 1px;
}

form {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 24px rgba(0,0,0,0.08);
	padding: 2.5rem 2rem 2rem 2rem;
	min-width: 320px;
	max-width: 90vw;
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

label {
	font-weight: 500;
	color: #333;
	margin-bottom: 0.3rem;
}

input[type="text"],
input[type="password"] {
	padding: 0.7rem 1rem;
	border: 1px solid #cfd8dc;
	border-radius: 6px;
	font-size: 1rem;
	background: #f9fbfc;
	transition: border 0.2s;
}
input[type="text"]:focus,
input[type="password"]:focus {
	border-color: #7da0fa;
	outline: none;
}

button[type="submit"] {
	background: #3a7afe;
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 0.8rem 0;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	margin-top: 0.5rem;
	box-shadow: 0 2px 8px rgba(58,122,254,0.08);
	transition: background 0.2s;
}
button[type="submit"]:hover {
	background: #2556b8;
}

p[style*="color:red"] {
	color: #d32f2f !important;
	background: #fff0f0;
	border: 1px solid #ffcdd2;
	border-radius: 6px;
	padding: 0.7rem 1rem;
	margin-bottom: 1rem;
	font-size: 1rem;
}

@media (max-width: 480px) {
	form {
		min-width: 90vw;
		padding: 1.2rem 0.5rem;
	}
	h1 {
		font-size: 1.3rem;
	}
}
