body {
    background-color: #1a1a1a;
    font-family: Arial, sans-serif;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    text-align: center;
    width: 100%;
    max-width: 300px;
    margin: auto;
}

.login-container a {
    color: #BBB;
    text-decoration: none;
    font-size: 12px;
    float: left;
    padding-left: 2px;
}

.login-logo {
    margin-bottom: 20px;
    width: 100%;
    max-width: 275px;
}

.pos-message {
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
    text-align: left;
    font-size: 13px;
}

.pos-message.error {
    border: 1px solid #a00; /* Darker red border */
    background-color: #f2dede; /* Lighter inside */
    color: #a94442; /* Easy-to-read text color */
}

.pos-message.success {
    border: 1px solid #2e8b57; /* Darker green border */
    background-color: #dff0d8; /* Lighter inside */
    color: #3c763d; /* Easy-to-read text color */
}



/* Login Form Styles */
.login-form {
    width: 100%;
	max-width: 300px;
}

.login-form input {
    box-sizing: border-box; /* Add box-sizing to include padding and border in the element's total width and height */
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #333; /* Add a border to ensure the rounded corners are visible */
    border-radius: 5px;
    background-color: #333;
    color: #bbb;
}

.login-form input[type="submit"] {
    background-color: #4CAF50;
    cursor: pointer;
    color: #FFF;
}

.login-form input[type="submit"]:hover {
    background-color: #45a049;
}
    




/* Lost Password Form Styles */
.lost-password-form {
    
}

.lost-password-form {
    width: 100%;
	max-width: 300px;
}

.lost-password-form input {
    box-sizing: border-box; /* Add box-sizing to include padding and border in the element's total width and height */
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #333; /* Add a border to ensure the rounded corners are visible */
    border-radius: 5px;
    background-color: #333;
    color: #bbb;
}

.lost-password-form input[type="submit"] {
    background-color: #4CAF50;
    cursor: pointer;
    color: #FFF;
}

.lost-password-form input[type="submit"]:hover {
    background-color: #45a049;
}