.login-container {
    max-width: 400px;
    margin: 0px auto;      /* Center the form horizontally and add top margin */
    padding: 20px;
    background-color: #fff;  /* White background */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;      /* Center text inside the container */
}

.login-container h5 {
    text-align: center;
    margin-bottom: 20px;
}

/* New class for login input fields */
.custom-login-input {
    width: 90%;
    padding: 10px 15px;
    font-size: 18px;
    display: block;
    margin: 10px auto;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-login-input:focus {
    border-color: #77c1ad;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
    outline: none;
}

/* New class for login submit button */
.custom-login-submit {
    padding: 10px 20px;
    font-size: 18px;
    display: block;
    margin: 20px auto;
    background-color: #4e7769; /* Green background */
    color: white;              /* White text */
    border: none;              /* Remove borders */
    border-radius: 4px;        /* Rounded corners */
    cursor: pointer;           /* Pointer/hand icon */
    transition: background-color 0.3s ease;
}

.custom-login-submit:hover {
    background-color: #45a049;
}

.login-container label {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    text-align: center;
}

/* Apply h6 styles to login labels */
.login-label {
    font-family: 'Poppins', sans-serif; /* Use the same font as h6 */
    color: black;                     /* Same color as h6 */
    margin-bottom: 2px;                 /* Same margin-bottom as h6 */
    margin-left: 6px;                   /* Same margin-left as h6 */
    font-size: 1.5em;                     /* Adjust font size if needed */
    display: block;                     /* Ensure it behaves like a block element */
    text-align: center;                 /* Center the label text */
    font-weight: 600;
}

/* Error message styling */
.error-message {
    color: red;            /* Existing color */
    text-align: center;    /* Center the text */
    margin-top: 10px;      /* Optional: Add some space above */
    font-size: 16px;       /* Optional: Adjust font size */
}