* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', 'Monaco', monospace;
    background-color: #000000;
    color: #CCCCCC;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ascii-logo {
    color: #8B0000;
    font-size: 14px;
    line-height: 0.85;
    text-align: center;
    margin-bottom: 50px;
    white-space: pre;
}

.login-box {
    width: 420px;
    padding: 30px;
    background-color: #000000;
    border: 2px solid #333333;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.login-header {
    text-align: center;
    color: #8B0000;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    border: 1px solid #333333;
    background-color: #000000;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    color: #666666;
    font-size: 12px;
}

.terminal-input {
    width: 100%;
    height: 40px;
    padding: 10px;
    background-color: #000000;
    border: 2px solid #333333;
    color: #CCCCCC;
    font-family: 'Courier New', 'Monaco', monospace;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.terminal-input:focus {
    border-color: #8B0000;
}

.terminal-button {
    width: 100%;
    height: 45px;
    background-color: #000000;
    border: 2px solid #8B0000;
    color: #8B0000;
    font-family: 'Courier New', 'Monaco', monospace;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.terminal-button:hover {
    background-color: #8B0000;
    color: #000000;
}

.terminal-button:active {
    background-color: #8B0000;
}

.error-message {
    text-align: center;
    color: #8B0000;
    font-size: 13px;
    margin-top: 10px;
}

.status-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background-color: #000000;
    border-top: 1px solid #333333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    font-size: 11px;
    color: #666666;
}

.status-left {
    display: flex;
    gap: 20px;
}

.status-right {
    display: flex;
    gap: 10px;
}

.status-button {
    padding: 4px 10px;
    background-color: #000000;
    border: 1px solid #333333;
    color: #666666;
    font-family: 'Courier New', 'Monaco', monospace;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.status-button:hover {
    border-color: #8B0000;
    color: #8B0000;
}
