body {
    margin: 0;
    background: black;
    color: #0f0;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    position: relative;
    border-radius: 20px; /* Curved edges for the main container */
    overflow: hidden; /* Ensures matrix effect respects the rounded corners */
}
.login-box {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 20px; /* Curved edges for the login box */
    box-shadow: 0 0 20px #00BFFF;
    text-align: center;
    width: 90%;
    max-width: 330px;
    position: relative;
    z-index: 1;
}
.status-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 0;
    background: black;
    display: flex;
    justify-content: center;
    font-size: 0.9rem;
    height: 20px;
    line-height: 20px;
}
.status-bar span {
    margin: 0 5px;
}
.white-text { color: white; }
.red-text { color: red; }
.yellow-text { color: yellow; }
.blue-text { color: #00BFFF; }
.login-box img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}
.login-box label,
.login-box input {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    text-align: center;
}
.login-box input {
    padding: 0.5rem;
    border: 1px solid #0f0;
    background: rgba(0, 0, 0, 0.6);
    color: #0f0;
    text-align: center;
    border-radius: 5px;
    transition: border-color 0.3s;
}
.login-box input:focus {
    border-color: #00BFFF;
}
.login-box button {
    padding: 0.5rem 1rem;
    background: #00BFFF;
    border: none;
    color: #000;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}
.login-box button:hover {
    background: #008CBA;
}
.register-guest {
    display: block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: maroon;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    text-align: center;
}
.register-guest:hover {
    background: #800000;
}
.register-power {
    display: block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: darkgreen;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    text-align: center;
}
.register-power:hover {
    background: #004d00;
}
#matrixCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
#bodyMatrixCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}