@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');

body {
    font-family: 'Roboto Mono', monospace;
    background-color: #1a1d21; 
    color: #f0f0f0; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: #25282e;
    padding: 40px;
    border: 1px solid #444;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: left;
    width: 380px;
}

h2 {
    color: #61dafb; 
    margin-top: 0;
    font-weight: 500;
    border-bottom: 1px solid #444;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

#access-code {
    font-family: 'Roboto Mono', monospace;
    background-color: #1a1d21;
    color: #f0f0f0;
    border: 1px solid #555;
    border-radius: 4px;
    padding: 12px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 10px;
    font-size: 16px;
    transition: all 0.2s ease-in-out;
}

#access-code:focus {
    outline: none;
    border-color: #61dafb;
    box-shadow: 0 0 10px rgba(97, 218, 251, 0.3);
}

button {
    font-family: 'Roboto Mono', monospace;
    cursor: pointer;
    background-color: #61dafb;
    color: #1a1d21;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    width: 100%;
    margin-top: 25px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

button:hover {
    background-color: #88eaff;
}

.error-message {
    color: #ff6b6b;
    margin-top: 15px;
    height: 20px;
    font-size: 0.9em;
}

.error-message::before {
    content: '[!] ';
}