

/* Login page heading */
h2 {
    text-align: center;
    color: cyan;
    text-shadow: 0 0 5px cyan;
}

/* Style the form container */
form {
    width: 300px;
    margin: 50px auto;
    padding: 20px;
    border: 2px solid lime;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.7);
}

/* Style the labels */
label {
    display: block;
    margin-bottom: 5px;
    color: yellow;
}

/* Style the input fields */
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 5px;
    margin-bottom: 15px;
    border: 2px inset lime;
    background-color: black;
    color: lime;
    font-family: 'Courier New', Courier, monospace;
}

/* Style the submit button */
input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: lime;
    color: black;
    font-weight: bold;
    border: 2px outset lime;
    cursor: pointer;
}

/* Adjust input field focus effects */
input[type="text"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: cyan;
}

/* Old-school border around the form */
form {
    border: 3px double lime;
}
