body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: url('wepb/bg.webp') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.login-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 400px;
    position: relative;
    z-index: 2;
}

h1 {
    margin-bottom: 10px;
    font-size: 1.5em;
}

h2 {
    margin-bottom: 20px;
    color: #666;
    font-size: 0.8em;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #c00101;
    color: white;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: #680c00;
}

.error {
    color: red;
    margin-top: 10px;
}

@media (min-width: 600px) {
    .login-container {
        width: 80%;
        max-width: 450px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.0em;
    }
}

@media (min-width: 1024px) {
    .login-container {
        width: 70%;
        max-width: 500px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1em;
    }
}
