body {
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-form {
    background-color: #333;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    position: relative;
    z-index: 1;
    width: 300px;
    max-width: 100%;
    margin: 0 auto;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    background-color: white;
    color: black;
}

.login-form input[type="submit"] {
    background-color: #008000;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

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

.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    width: 250px; /* Adjust the width as desired */
    height: auto;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(matrix-bg.jpg);
    opacity: 0.1;
    z-index: -1;
}

#c {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
}
