@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

body {
    background-color: #000;
    color: #00ff00;
    font-family: 'Share Tech Mono', monospace;
    font-weight: bold;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;  
    align-items: center;    
    height: 100vh;           
}


form {
    display: flex;
    gap: 10px;
    flex-direction: row;
}

input[type="password"],
input[type="submit"] {
    background-color: black;
    color: #00ff00;
    border: 3px solid #00ff00;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Share Tech Mono', monospace;
    outline: none;
}

input[type="submit"]:hover {
    background-color: #003300;
    cursor: pointer;
}

.error {
    color: red;
    position: absolute;
    top: 20px;
    width: 100%;
    text-align: center;
    font-weight: bold;
}

.box {
    word-wrap: break-word;   
    overflow-wrap: break-word; 
    white-space: pre-wrap;   
    max-width: 90vw;           
    text-align: left;        
}

