body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: #f4f7f6;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
}

.login-card {
	background-color: #ffffff;
	padding: 40px 30px;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	max-width: 400px;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
}

.logo {
	max-width: 220px;
	height: auto;
	margin-bottom: 20px;
}

h2 {
	/* Using the RunNB red */
	color: #b01c2e; 
	margin-bottom: 25px;
	font-size: 22px;
}

.form-group {
	margin-bottom: 15px;
	text-align: left;
}

label {
	display: block;
	margin-bottom: 5px;
	color: #333333;
	font-weight: 600;
	font-size: 14px;
}

input[type="text"],
input[type="password"] {
	width: 100%;
	padding: 12px;
	border: 1px solid #cccccc;
	border-radius: 5px;
	box-sizing: border-box;
	font-size: 16px;
	transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="password"]:focus {
	/* Using the RunNB green */
	border-color: #005a3b; 
	outline: none;
}

button {
	/* Using the RunNB green */
	background-color: #005a3b; 
	color: white;
	padding: 12px;
	border: none;
	border-radius: 5px;
	width: 100%;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	margin-top: 15px;
	transition: background-color 0.3s;
}

button:hover {
	background-color: #004029;
}

input[readonly] {
	background-color: #e9ecef;
	cursor: not-allowed;
}

#username_div {
	display: none !important;
}