.login-links p {
    margin: 8px 0;
    font-size: 0.9em;
}

.login-links a {
    color: #007bff;
    text-decoration: none;
}

.login-links a:hover {
    text-decoration: underline;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
    font-weight: bold;
}

input[type="text"],
input[type="password"] {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #aaa;
    border-radius: 4px;
}

input[type="submit"] {
    margin-top: 20px;
    padding: 10px;
    background-color: #2e7d32;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
	font-weight: bold;
}

input[type="submit"]:hover {
    background-color: #256b28;
}
* {
    box-sizing: border-box;
}


h2 {
    color: #2e7d32;
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Reset some basic elements */
body {
    font-family: 'Poppins', sans-serif;
	background-color: #f8f9fa;
	margin: 0;
	padding: 20px;
}

/* Center the container box */
.container {
    width: 400px;
    margin: 100px auto; /* top margin + horizontal center */
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Style the form elements */
form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
    font-weight: 500;
}

