/* Basic styles for admin login page */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
        background-color: #2c3e50; /* Dark background color */
        color: #ecf0f1; /* Light text color for contrast */
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        margin: 0;
}

#login-container {
    background-color: #34495e; /* Slightly lighter dark background for the container */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4); /* More prominent shadow */
    width: 350px; /* Slightly wider */
    text-align: center;
}

h1 {
    color: #ecf0f1; /* Light color for heading */
    margin-bottom: 20px;
}

form div {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #bdc3c7; /* Lighter gray for labels */
    font-weight: bold;
}

input[type="text"],
input[type="password"] {
    width: calc(100% - 20px); /* Adjust for padding */
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #7f8c8d; /* Darker border */
    border-radius: 5px;
    box-sizing: border-box;
    background-color: #ecf0f1; /* Light background for input fields */
    color: #2c3e50; /* Dark text for input */
}

button {
    background-color: #2980b9; /* A blue that contrasts well with the dark theme */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    width: 100%;
    transition: background-color 0.3s ease; /* Smooth transition for hover */
}

button:hover {
    background-color: #3498db; /* Lighter blue on hover */
}