* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
}

body {
    width: 100vw;
    height: 100vh;
    background-color: #080808;
    color: #00ff66;
    display: flex;
    justify-content: center;
    align-items: center;
}

.terminal-card {
    width: 360px;
    padding: 30px;
    background: #111;
    border: 2px solid #00ff66;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.2);
}

h1 {
    font-size: 28px;
    text-align: center;
    letter-spacing: 3px;
}

.subtitle {
    font-size: 11px;
    text-align: center;
    opacity: 0.7;
    margin-bottom: 20px;
}

.status-box {
    padding: 10px;
    margin-bottom: 20px;
    font-size: 12px;
    text-align: center;
    border: 1px dashed #00ff66;
    background: rgba(0, 255, 102, 0.05);
}

.status-box.error {
    color: #ff3366;
    border-color: #ff3366;
    background: rgba(255, 51, 102, 0.05);
}

.input-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-size: 11px;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 10px;
    background: #000;
    border: 1px solid #00ff66;
    color: #00ff66;
    outline: none;
}

input:focus {
    box-shadow: 0 0 5px #00ff66;
}

.button-row {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

button {
    flex: 1;
    padding: 12px;
    background: #000;
    border: 1px solid #00ff66;
    color: #00ff66;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s;
}

button:hover {
    background: #00ff66;
    color: #000;
}