.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 250, 250, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.login-box {
    background: #ffffff;
    border: 1px solid #d0d0d0;
    padding: 32px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.login-box h2 {
    font-size: 16px;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.login-box p {
    font-size: 11px;
    color: #6a6a6a;
    margin-bottom: 24px;
    line-height: 1.6;
}

.login-box input {
    width: 100%;
    padding: 0 12px;
    border: 1px solid #d0d0d0;
    font-size: 12px;
    font-family: 'Geist Mono', monospace;
    background: #ffffff;
    color: #1a1a1a;
    margin-bottom: 12px;
    height: 40px;
    line-height: 40px;
}

.login-box input:focus {
    outline: none;
    border-color: #4a4a4a;
    background: #ffffff;
}

.login-box button {
    width: 100%;
    padding: 0 12px;
    background: #2a2a2a;
    color: #ffffff;
    border: 1px solid #2a2a2a;
    font-size: 12px;
    font-family: 'Geist Mono', monospace;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.5px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.login-box button:hover:not(:disabled) {
    background: #3a3a3a;
    border-color: #3a3a3a;
}

.login-box button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.login-error {
    font-size: 11px;
    color: #d32f2f;
    margin-top: 12px;
    text-align: center;
}
