/* Reset Default Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body Styling with Background Image */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('../images/bg_login.png') no-repeat center center/cover; /* Replace with your image */
}

/* Login Container */
.login-container {
    width: 350px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent white */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    text-align: center;
}

/* Heading */
h2 {
    margin-bottom: 15px;
    color: #333;
}

/* Input Fields */
input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Login Button */
button {
    width: 100%;
    padding: 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #0056b3;
}

/* Responsive Design */
@media (max-width: 400px) {
    .login-container {
        width: 90%;
    }
}