body {
    font-family: Arial, sans-serif;
    background-color: #1e1e1e; /* Dark background for body */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #f4f4f4; /* Light text for better readability */
}

.form-container {
    background-color: #2c2c2c; /* Dark background for form */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); /* Softer shadow for dark theme */
    width: 300px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #f4f4f4; /* Light header text */
}

.form-group {
    margin-bottom: 15px;
    margin-right: 15px;
}

label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #f4f4f4; /* Light label text */
}

input[type="text"], input[type="password"], input[type="file"],input[type="email"] {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #444; /* Subtle border */
    border-radius: 4px;
    background-color: #333; /* Darker background for inputs */
    color: #f4f4f4; /* Light text inside inputs */
}

input::placeholder {
    color: #aaa; /* Subtle placeholder color */
}

button {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50; /* Highlight green for button */
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #45a049;
    transform: scale(1.05); /* Slight pop effect on hover */
}

#message {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #aaa; /* Subtle text for message */
}
.navbar {
    background: #1c1c1c; /* Dark background color */
    color: #ecf0f1; /* Light text color */
    padding: 15px 20px; /* Padding inside the navbar */
    display: flex; /* Flex layout for alignment */
    justify-content: space-between; /* Space between brand and logout */
    align-items: center; /* Center items vertically */
    position: fixed; /* Fixes the navbar to the top of the viewport */
    top: 0; /* Ensures it's at the top */
    left: 0; /* Aligns it with the left edge */
    width: 100%; /* Spans the entire width */
    z-index: 1000; /* Ensures it stays above other elements */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5); /* Subtle shadow for depth */
}
.navbar-brand {
    font-size: 3rem; /* Adjust font size */
    font-weight: bold; /* Bold for emphasis */
    color: #ecf0f1; /* Matches the navbar text color */
    text-decoration: none; /* Removes underline */
}
