body {
    font-family: Arial, sans-serif;
    background-color: #16918b;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    text-align: center;
    margin-bottom: 30px;
    background-color: rgba(0, 0, 0, 0.2); /* Background for sections */
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    
    /* background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1); /* Slight transparency for contrast */
    /*box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    
    */
}

h1 {
    color: white;
    margin-bottom: 20px;
    font-size: 24px;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    color: white;
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #21aa3f;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #218838;
}

.error-message {
    color: red;
    margin-top: 10px;
}
button {
    padding: 10px 20px;
    background-color: #ffffff;
    border: none;
    border-radius: 5px;
    color: #16918b;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #145d5b; /* Darker shade for hover */
    color: white;
}