body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Inter", sans-serif;
	background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
	min-height: 100vh;
}

/* NAVBAR (slightly refined) */
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	background: rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(12px);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10;
}

.nav-links a {
	color: #fff;
	font-size: 15px;
	transition: all 0.3s ease;
}

.nav-links a:hover {
	color: #00b4d8;
	transform: translateY(-1px);
}

/* CENTERING */
.login-container {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	padding-top: 80px;
}

/* LOGIN CARD */
.login-section {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	padding: 40px 35px;
	width: 380px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	color: #fff;
}

/* HEADINGS */
.login-section h2 {
	margin-bottom: 5px;
	font-size: 26px;
}

.subtitle {
	font-size: 14px;
	color: rgba(255,255,255,0.7);
	margin-bottom: 25px;
}

/* FORM */
form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.input-group {
	display: flex;
	flex-direction: column;
	text-align: left;
}

.input-group label {
	font-size: 13px;
	margin-bottom: 5px;
	color: rgba(255,255,255,0.8);
}

.input-group input {
	padding: 12px;
	border-radius: 10px;
	border: none;
	outline: none;
	background: rgba(255,255,255,0.1);
	color: #fff;
	font-size: 14px;
	transition: all 0.25s ease;
}

/* INPUT FOCUS EFFECT */
.input-group input:focus {
	background: rgba(255,255,255,0.15);
	box-shadow: 0 0 0 2px #00b4d8;
}

/* BUTTON */
button[type="submit"] {
	background: linear-gradient(135deg, #00b4d8, #0096c7);
	color: white;
	border: none;
	padding: 12px;
	border-radius: 10px;
	font-size: 15px;
	cursor: pointer;
	font-weight: 600;
	margin-top: 10px;
	transition: all 0.3s ease;
}

button[type="submit"]:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 180, 216, 0.4);
}

/* SIGNUP TEXT */
.signup-text {
	margin-top: 20px;
	font-size: 14px;
	color: rgba(255,255,255,0.7);
}

.signup-text a {
	color: #00b4d8;
	text-decoration: none;
	font-weight: 500;
}

.signup-text a:hover {
	text-decoration: underline;
}