body {
    background-color: rgb(255, 255, 255);
    color: #000000;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.password-container {
    text-align: center;
}

.password-container img {
    width: 100px;
    height: auto;
    margin-bottom: 30px;
}

input[type="password"] {
    padding: 10px;
    border: none;
    outline: none;
    background: #000000;
    color: rgb(255, 255, 255);
    font-weight: bold;
    width: 200px;
    font-family: 'Courier New', Courier, monospace;
}
button {
    padding: 10px;
    border: none;
    background: black;
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Courier New', Courier, monospace;
    margin-left: 5px;
}
.login-link {
    margin-top: 20px;
    font-size: 12px;
}
.login-link a {
    color: #000000;
    text-decoration: underline;
}

.error {
    color: red;
    margin-top: 10px;
    font-size: 14px;
}