/* Center body content and apply background gradient */
body {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	font-family: 'Jost', sans-serif;
	background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
	color: #ffffff;
}

/* Main form container styling */
#loginForm {
	background: rgba(48, 43, 99, 0.85);
	width: 400px;
	padding: 30px 20px;
	border-radius: 12px;
	box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Label styling */
label {
	color: #ffffff;
	font-size: 1.2em;
	margin-bottom: 15px;
	font-weight: 600;
	transition: color 0.3s;
}

/* Input styling */
input[type="text"] {
	width: 90%;
	height: 40px;
	background: #e0dede;
	color: #302b63;
	margin: 10px 0;
	padding: 12px;
	border: none;
	border-radius: 8px;
	font-size: 1em;
	text-align: center;
	transition: background 0.3s, transform 0.2s;
	outline: none;
	box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.2);
}
input[type="text"]:focus {
	background: #ffffff;
	transform: scale(1.03);
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Submit button styling */
button, input[type="submit"] {
	width: 90%;
	height: 45px;
	margin: 20px 0;
	background: #573b8a;
	color: #ffffff;
	border: none;
	border-radius: 8px;
	font-size: 1em;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.3s, transform 0.2s;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
button:hover, input[type="submit"]:hover {
	background: #6d44b8;
	transform: translateY(-3px);
	box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}
button:active, input[type="submit"]:active {
	transform: translateY(1px);
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}

/* Container styling */
.login {
	width: 100%;
	text-align: center;
	position: relative;
	transition: transform 0.6s ease;
}

/* Navbar styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 30px;
    background: #302b63;
    color: #ffffff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.navbar .logo a {
    color: #ffffff;
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
	padding-right: 100px;
}

.nav-links li {
    margin: 0;
}

.nav-links li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #dddddd;
}

/* Responsive styling */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Footer styling */
.footer {
    width: 100%;
    padding: 15px;
    background-color: #302b63;
    color: #ffffff;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    font-size: 0.9em;
    box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.2);
}

a{
    color:red;
}