/* Core Styles for SecurePanel FileHub */

:root {
	--brand-color: #1565c0;
	--brand-color-hover: #1253a1;
	--brand-logo-max-width: 300px;
}

body {
	font-family: 'Open Sans', sans-serif;
	background-color: #f5f7fa;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	margin: 0;
	padding: 16px;
	box-sizing: border-box;
}

.login-container {
	width: min(330px, calc(100% - 32px));
	background-color: white;
	padding: 20px;
	border-radius: 14px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.logo {
	max-width: min(var(--brand-logo-max-width), 100%);
	width: auto;
	height: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}

.Brand-Title {
	font-size: 1.8em;
	color: var(--brand-color);
	margin: 0 0 16px;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

h2 {
	font-size: 18px;
	color: #333;
	margin-bottom: 15px;
}

input[type='text'] {
	width: 100%;
	padding: 10px;
	font-size: 14px;
	border-radius: 6px;
	border: 1px solid #ccc;
	margin-bottom: 15px;
	box-sizing: border-box;
}

button {
	background-color: var(--brand-color);
	color: white;
	border: none;
	padding: 10px 18px;
	border-radius: 6px;
	font-size: 14px;
	cursor: pointer;
	width: 100%;
	transition: background-color 0.2s ease-in-out;
}

button:hover {
	background-color: var(--brand-color-hover);
}
