/* Login specific styles */
.terminal-window {
    background: #0d0e10;
    width: 100%;
    max-width: 650px;
    margin: 5rem auto;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    overflow: hidden;
}

.terminal-header {
    background: #1a1c20;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
}

.terminal-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #333;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.terminal-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: 'Fira Code', monospace;
}

.terminal-body {
    padding: 1.5rem;
    height: 400px;
    overflow-y: auto;
    font-family: 'Fira Code', monospace;
    font-size: 0.95rem;
    color: var(--text-main);
}

.terminal-line {
    margin-bottom: 0.5rem;
}

.terminal-input-line {
    display: flex;
    gap: 10px;
    align-items: center;
}

.terminal-prompt {
    color: var(--accent-primary);
}

#terminal-input, #password-input {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: inherit;
    font-size: inherit;
    outline: none;
    flex: 1;
}

.error-text {
    color: #ff5f56;
}

.success-text {
    color: var(--accent-primary);
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 18px;
    background: var(--accent-primary);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}
