/* -----------------------------
   Reset & Base
----------------------------- */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Inter", Arial, sans-serif;
}

body,
html {
	height: 100%;
	background: linear-gradient(135deg, #e0f7fa, #c8e6c9);
	display: flex;
	align-items: center;
	justify-content: center;
}

/* -----------------------------
   Login Container
----------------------------- */
.login-container {
	background-color: #fff;
	padding: 45px 35px;
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	width: 100%;
	max-width: 400px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-container:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.login-container h1 {
	color: #006688;
	margin-bottom: 30px;
	font-size: 2rem;
	font-weight: 700;
}

/* Inputs */
.login-container form input {
	width: 100%;
	padding: 14px 15px;
	margin-bottom: 20px;
	border-radius: 8px;
	border: 1px solid #ccc;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.login-container form input:focus {
	border-color: #0099cc;
	box-shadow: 0 0 8px rgba(0, 153, 204, 0.3);
	outline: none;
}

/* Buttons */
.login-container form button {
	width: 100%;
	padding: 14px 0;
	background: linear-gradient(90deg, #0099cc, #006688);
	color: #fff;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.login-container form button:hover {
	background: linear-gradient(90deg, #006688, #0099cc);
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.login-container form button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Login message */
#loginMessage {
	margin-top: 12px;
	color: #dc3545;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.3s ease;
}
